changeset 21370:df5922f77193

Remove unecessary "dashtype" syntax when drawing colored gnuplot axes. (Bug #42947). * __gnuplot_draw__axes__.m: Do not specify the dashtype when drawing colored axes.
author Ben Abbott <bpabbott@mac.com>
date Sat, 27 Feb 2016 20:08:39 -0500
parents 105224df2330
children dc3252099232
files scripts/plot/util/private/__gnuplot_draw_axes__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/util/private/__gnuplot_draw_axes__.m	Fri Feb 26 20:35:45 2016 -0500
+++ b/scripts/plot/util/private/__gnuplot_draw_axes__.m	Sat Feb 27 20:08:39 2016 -0500
@@ -1808,7 +1808,7 @@
 
   function arrow (idx, lc, lw, from, to)
     fprintf (plot_stream, "set arrow %d ", idx);
-    fprintf (plot_stream, "nohead nofilled front dashtype solid ");
+    fprintf (plot_stream, "nohead nofilled front ");
     fprintf (plot_stream, "lc rgb ""#%02x%02x%02x"" ", round (255 * lc));
     fprintf (plot_stream, "linewidth %.3f ", obj.linewidth);
     fprintf (plot_stream, "from graph %d,%d,%d ", from);