comparison scripts/plot/util/private/__go_draw_axes__.m @ 19001:391e080ae810

__go_draw_axes__.m: Fix regression using legend with log axes introduced in f84361735a40. * __go_draw_axes__.m: Use line continuation when creating fontspacespec so that wrapping line to < 80 characters doesn't produce a 2 row matrix.
author Rik <rik@octave.org>
date Sun, 10 Aug 2014 08:18:18 -0700
parents 1ad621d894ba
children
comparison
equal deleted inserted replaced
19000:1ad621d894ba 19001:391e080ae810
1588 otherwise 1588 otherwise
1589 pos = ""; 1589 pos = "";
1590 endswitch 1590 endswitch
1591 if (__gnuplot_has_feature__ ("key_has_font_properties")) 1591 if (__gnuplot_has_feature__ ("key_has_font_properties"))
1592 [fontname, fontsize] = get_fontname_and_size (hlgnd); 1592 [fontname, fontsize] = get_fontname_and_size (hlgnd);
1593 fontspacespec = [ create_spacingspec(fontname, fontsize, gnuplot_term), 1593 fontspacespec = [ create_spacingspec(fontname, fontsize, gnuplot_term),...
1594 create_fontspec(fontname, fontsize, gnuplot_term) ]; 1594 create_fontspec(fontname, fontsize, gnuplot_term) ];
1595 else 1595 else
1596 fontspacespec = ""; 1596 fontspacespec = "";
1597 endif 1597 endif
1598 textcolors = get (findobj (hlgnd.children, "type", "text"), "color"); 1598 textcolors = get (findobj (hlgnd.children, "type", "text"), "color");