diff options
author | dgp <dgp@users.sourceforge.net> | 2007-11-01 16:37:09 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2007-11-01 16:37:09 (GMT) |
commit | 0241933d2fcf1a09145b33048c52e40988a8bfa9 (patch) | |
tree | cee00028b46ebd747b575cdf9398299f2c8393c8 /library/ttk/fonts.tcl | |
parent | 08a5977be6d47dbe4b3fa1bac892353f66dd2990 (diff) | |
download | tk-0241933d2fcf1a09145b33048c52e40988a8bfa9.zip tk-0241933d2fcf1a09145b33048c52e40988a8bfa9.tar.gz tk-0241933d2fcf1a09145b33048c52e40988a8bfa9.tar.bz2 |
merge updates from HEAD
Diffstat (limited to 'library/ttk/fonts.tcl')
-rw-r--r-- | library/ttk/fonts.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/ttk/fonts.tcl b/library/ttk/fonts.tcl index 83e19b5..1c4fbb0 100644 --- a/library/ttk/fonts.tcl +++ b/library/ttk/fonts.tcl @@ -1,5 +1,5 @@ # -# $Id: fonts.tcl,v 1.4.2.2 2007/10/24 12:59:35 dgp Exp $ +# $Id: fonts.tcl,v 1.4.2.3 2007/11/01 16:37:23 dgp Exp $ # # Font specifications. # @@ -111,7 +111,7 @@ switch -- [tk windowingsystem] { set F(viewsize) 12 set F(smallsize) 11 set F(labelsize) 10 - set F(fixedsize) 9 + set F(fixedsize) 11 font configure TkDefaultFont -family $F(family) -size $F(size) font configure TkTextFont -family $F(family) -size $F(size) @@ -122,7 +122,7 @@ switch -- [tk windowingsystem] { font configure TkFixedFont -family $F(fixed) -size $F(fixedsize) font configure TkIconFont -family $F(family) -size $F(size) font configure TkMenuFont -family $F(family) -size $F(menusize) - font configure TkSmallCaptionFont -family $F(family) -size $F(labelsize) + font configure TkSmallCaptionFont -family $F(family) -size $F(labelsize) } default - x11 { @@ -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) |