# HG changeset patch # User Konstantinos Poulios # Date 1292616819 -3600 # Node ID 1511bbfe6a6e6e96c9e95283cd421893b59e8c71 # Parent c388677a3f1aeab2d3023d7983f44e12c79f8025 Change axes default fontsize from 12 to 10. diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2012-12-17 Konstantinos Poulios + + * graphics.h.in (class axes::properties): Change default value for + fontsize from 12 to 10. + * graphics.cc (axes::properties::set_defaults): Likewise. + 2010-12-15 John W. Eaton Bug #31883. diff --git a/src/graphics.cc b/src/graphics.cc --- a/src/graphics.cc +++ b/src/graphics.cc @@ -3395,7 +3395,7 @@ { fontangle = "normal"; fontname = OCTAVE_DEFAULT_FONTNAME; - fontsize = 12; + fontsize = 10; fontunits = "points"; fontweight = "normal"; diff --git a/src/graphics.h.in b/src/graphics.h.in --- a/src/graphics.h.in +++ b/src/graphics.h.in @@ -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"