changeset 11384:1511bbfe6a6e

Change axes default fontsize from 12 to 10.
author Konstantinos Poulios <logari81@googlemail.com>
date Fri, 17 Dec 2010 21:13:39 +0100
parents c388677a3f1a
children 71e7467fbd34
files src/ChangeLog src/graphics.cc src/graphics.h.in
diffstat 3 files changed, 8 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Fri Dec 17 17:22:09 2010 -0800
+++ b/src/ChangeLog	Fri Dec 17 21:13:39 2010 +0100
@@ -1,3 +1,9 @@
+2012-12-17  Konstantinos Poulios  <logari81@googlemail.com>
+
+	* 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  <jwe@octave.org>
 
 	Bug #31883.
--- a/src/graphics.cc	Fri Dec 17 17:22:09 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";
 
--- a/src/graphics.h.in	Fri Dec 17 17:22:09 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"