Mercurial > hg > octave-lyh
changeset 7820:cb4838d70ab2
Fix default value for axes gridlinestyle and minorgridlinestyle.
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Thu, 07 Feb 2008 16:21:03 +0100 |
parents | b7e8ea6a5143 |
children | f79dcba526a8 |
files | src/ChangeLog src/graphics.cc |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2008-06-04 Michael Goffioul <michael.goffioul@gmail.com> + + * graphics.cc (axes::properties::set_defaults): Use correct + default values for gridlinestyle and minorgridlinestyle. + 2008-06-03 Jaroslav Hajek <highegg@gmail.com> * load-save.cc (Fload): Fix "-7" option.
--- a/src/graphics.cc +++ b/src/graphics.cc @@ -1587,10 +1587,10 @@ fontsize = 12; fontunits = "points"; fontweight = "normal"; - gridlinestyle = "-"; + gridlinestyle = ":"; linestyleorder = "-"; linewidth = 0.5; - minorgridlinestyle = "-"; + minorgridlinestyle = ":"; // Note: plotboxaspectratio will be set through update_aspectratiors plotboxaspectratiomode = "auto"; projection = "orthographic";