# HG changeset patch # User Ben Abbott # Date 1456621719 18000 # Node ID df5922f771939131deab8a13d7a5538a57b000f5 # Parent 105224df233014a061c87cd730388771667a5dd6 Remove unecessary "dashtype" syntax when drawing colored gnuplot axes. (Bug #42947). * __gnuplot_draw__axes__.m: Do not specify the dashtype when drawing colored axes. diff -r 105224df2330 -r df5922f77193 scripts/plot/util/private/__gnuplot_draw_axes__.m --- 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);