diff options
author | das <das> | 2007-05-27 13:14:36 (GMT) |
---|---|---|
committer | das <das> | 2007-05-27 13:14:36 (GMT) |
commit | 20eeeb7974cb31ad570850fa36c1c4459a7d76af (patch) | |
tree | 16bdb1bbd1db5ca2e22be54cb6320b9c0e3dc320 /library/demos/widget | |
parent | 2c2b9a8111b7f49319419eebb9e753020ed5a523 (diff) | |
download | tk-20eeeb7974cb31ad570850fa36c1c4459a7d76af.zip tk-20eeeb7974cb31ad570850fa36c1c4459a7d76af.tar.gz tk-20eeeb7974cb31ad570850fa36c1c4459a7d76af.tar.bz2 |
fix TIP #145 breakage on Aqua
Diffstat (limited to 'library/demos/widget')
-rw-r--r-- | library/demos/widget | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/library/demos/widget b/library/demos/widget index c4e9fd6..f92d0a7 100644 --- a/library/demos/widget +++ b/library/demos/widget @@ -11,7 +11,7 @@ exec wish "$0" "$@" # ".tcl" files is this directory, which are sourced by this script # as needed. # -# RCS: @(#) $Id: widget,v 1.29 2007/05/04 21:29:22 patthoyts Exp $ +# RCS: @(#) $Id: widget,v 1.30 2007/05/27 13:14:36 das Exp $ package require Tcl 8.5 package require Tk 8.5 @@ -34,7 +34,8 @@ if {[tk windowingsystem] eq "x11"} { if {[lsearch -exact [font names] defaultFont] == -1} { # TIP #145 defines some standard named fonts - if {[lsearch -exact [font names] TkDefaultFont] != -1} { + if {[lsearch -exact [font names] TkDefaultFont] != -1 && + [lsearch -exact [font names] TkFixedFont] != -1} { # FIX ME: the following tecnique of cloning the font to copy it works # fine but means that if the system font is changed by # Tk cannot update the copied font. font alias might be |