diff options
author | hobbs <hobbs> | 2007-10-30 16:29:55 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2007-10-30 16:29:55 (GMT) |
commit | 48985f714df5e25b8ae6c03fca5110c0de600861 (patch) | |
tree | d6a5287f8aa01622b002f0a0a286032525e74271 | |
parent | dc97493f9155cd9a6cb9dee769c24d3e65a3338d (diff) | |
download | tk-48985f714df5e25b8ae6c03fca5110c0de600861.zip tk-48985f714df5e25b8ae6c03fca5110c0de600861.tar.gz tk-48985f714df5e25b8ae6c03fca5110c0de600861.tar.bz2 |
use size -12 TkFixedFont (was -10)
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | library/ttk/fonts.tcl | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +2007-10-30 Jeff Hobbs <jeffh@ActiveState.com> + + * library/ttk/fonts.tcl: use size -12 TkFixedFont (was -10) + 2007-10-30 Donal K. Fellows <donal.k.fellows@manchester.ac.uk> * library/demos/unicodeout.tcl: Fixed Arabic and Hebrew rendering diff --git a/library/ttk/fonts.tcl b/library/ttk/fonts.tcl index 2d4b58f..3b66c83 100644 --- a/library/ttk/fonts.tcl +++ b/library/ttk/fonts.tcl @@ -1,5 +1,5 @@ # -# $Id: fonts.tcl,v 1.9 2007/10/30 02:33:09 hobbs Exp $ +# $Id: fonts.tcl,v 1.10 2007/10/30 16:29:55 hobbs Exp $ # # Font specifications. # @@ -136,7 +136,7 @@ switch -- [tk windowingsystem] { set F(size) -12 set F(ttsize) -10 set F(capsize) -14 - set F(fixedsize) -10 + set F(fixedsize) -12 font configure TkDefaultFont -family $F(family) -size $F(size) font configure TkTextFont -family $F(family) -size $F(size) |