# HG changeset patch # User Konstantinos Poulios # Date 1291921642 -3600 # Branch axes-default-fontsize # Node ID 8ea5890d2925aedd9af1a00b76f643756fb2d2c2 # Parent 80ad14c39c910bb5f80c30217c21e6bf98ecbaaf Change axes default fontsize from 12 to 10. diff -r 80ad14c39c91 -r 8ea5890d2925 src/ChangeLog --- a/src/ChangeLog Thu Dec 09 14:17:07 2010 +0100 +++ b/src/ChangeLog Thu Dec 09 20:07:22 2010 +0100 @@ -1,3 +1,9 @@ +2012-12-09 Konstantinos Poulios + + * graphics.h.in (class axes::properties): Change default value for + fontsize from 12 to 10. + * graphics.cc (axes::properties::set_defaults): Likewise. + 2012-12-09 Konstantinos Poulios * graphics.h.in (class text::properties): New properties positionmode, diff -r 80ad14c39c91 -r 8ea5890d2925 src/graphics.cc --- a/src/graphics.cc Thu Dec 09 14:17:07 2010 +0100 +++ b/src/graphics.cc Thu Dec 09 20:07:22 2010 +0100 @@ -3425,7 +3425,7 @@ { fontangle = "normal"; fontname = OCTAVE_DEFAULT_FONTNAME; - fontsize = 12; + fontsize = 10; fontunits = "points"; fontweight = "normal"; diff -r 80ad14c39c91 -r 8ea5890d2925 src/graphics.h.in --- a/src/graphics.h.in Thu Dec 09 14:17:07 2010 +0100 +++ b/src/graphics.h.in Thu Dec 09 20:07:22 2010 +0100 @@ -3179,7 +3179,7 @@ radio_property drawmode , "{normal}|fast" radio_property fontangle , "{normal}|italic|oblique" string_property fontname , OCTAVE_DEFAULT_FONTNAME - double_property fontsize , 12 + double_property fontsize , 10 radio_property fontunits SU , "{points}|normalized|inches|centimeters|pixels" radio_property fontweight , "{normal}|light|demi|bold" radio_property gridlinestyle , "-|--|{:}|-.|none"