# HG changeset patch # User Konstantinos Poulios # Date 1292616819 -3600 # Node ID ba986d918122f0b3ef9dee82d1cd1709dceb53da # Parent 473e4adaa5a28a5f6e85e36827ba60202d08f3a7 Change axes default fontsize from 12 to 10. diff -r 473e4adaa5a2 -r ba986d918122 src/ChangeLog --- a/src/ChangeLog Fri Dec 17 09:49:29 2010 -0800 +++ b/src/ChangeLog Fri Dec 17 21:13:39 2010 +0100 @@ -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 -r 473e4adaa5a2 -r ba986d918122 src/graphics.cc --- a/src/graphics.cc Fri Dec 17 09:49:29 2010 -0800 +++ b/src/graphics.cc Fri Dec 17 21:13:39 2010 +0100 @@ -3395,7 +3395,7 @@ { fontangle = "normal"; fontname = OCTAVE_DEFAULT_FONTNAME; - fontsize = 12; + fontsize = 10; fontunits = "points"; fontweight = "normal"; diff -r 473e4adaa5a2 -r ba986d918122 src/graphics.h.in --- a/src/graphics.h.in Fri Dec 17 09:49:29 2010 -0800 +++ b/src/graphics.h.in Fri Dec 17 21:13:39 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"