changeset 19472:9552138fe6f5

Fix line color when using plot3 (bug #39585, bug #36926). * __go_draw_axes__.m: For line objects with 3 dimensions, set hidden_removal to false.
author Rik <rik@octave.org>
date Mon, 29 Dec 2014 18:07:54 -0800
parents 51a1d1164449
children 93fbdbcb3349
files scripts/plot/util/private/__go_draw_axes__.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/util/private/__go_draw_axes__.m	Sun Dec 28 06:58:09 2014 -0800
+++ b/scripts/plot/util/private/__go_draw_axes__.m	Mon Dec 29 18:07:54 2014 -0800
@@ -590,6 +590,7 @@
           data{data_idx} = [xdat, ydat, zdat]';
           usingclause{data_idx} = sprintf ("record=%d using ($1):($2):($3)",
                                            numel (xdat));
+          hidden_removal = false;
           ## fputs (plot_stream, "set parametric;\n");
         else
           xdat = obj.xdata(:);