changeset 20637:751b9cc78904 stable

Fix issue with gnuplot, subplot, and 2 y-axes (bug #45822). * __go_draw_axes__.m: Fix typo and unset 'y2tics' as well as 'x2tics'.
author Avinoam Kalma <a.kalma@gmail.com>
date Mon, 19 Oct 2015 14:52:00 -0700
parents 410b1b3d109e
children ba7aae4ffe98
files scripts/plot/util/private/__go_draw_axes__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/util/private/__go_draw_axes__.m	Mon Oct 19 08:55:51 2015 +0200
+++ b/scripts/plot/util/private/__go_draw_axes__.m	Mon Oct 19 14:52:00 2015 -0700
@@ -146,7 +146,7 @@
   fputs (plot_stream, "unset ytics;\n");
   fputs (plot_stream, "unset ztics;\n");
   fputs (plot_stream, "unset x2tics;\n");
-  fputs (plot_stream, "unset x2tics;\n");
+  fputs (plot_stream, "unset y2tics;\n");
 
   if (! isempty (axis_obj.title))
     t = get (axis_obj.title);