summaryrefslogtreecommitdiffstats
path: root/library/demos/fontchoose.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'library/demos/fontchoose.tcl')
-rw-r--r--library/demos/fontchoose.tcl6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/demos/fontchoose.tcl b/library/demos/fontchoose.tcl
index de9e854..6ae5479 100644
--- a/library/demos/fontchoose.tcl
+++ b/library/demos/fontchoose.tcl
@@ -20,7 +20,7 @@ catch {font create FontchooseDemoFont {*}[font actual TkDefaultFont]}
# The font chooser needs to be configured and then shown.
proc SelectFont {parent} {
tk fontchooser configure -font FontchooseDemoFont \
- -command ApplyFont -parent $parent
+ -command ApplyFont -parent $parent
tk fontchooser show
}
@@ -33,9 +33,9 @@ proc ApplyFont {font} {
#
bind $w <<TkFontchooserVisibility>> {
if {[tk fontchooser configure -visible]} {
- %W.f.font state disabled
+ %W.f.font state disabled
} else {
- %W.f.font state !disabled
+ %W.f.font state !disabled
}
}