summaryrefslogtreecommitdiffstats
path: root/library/button.tcl
diff options
context:
space:
mode:
authorwelch <welch>1998-06-27 18:05:23 (GMT)
committerwelch <welch>1998-06-27 18:05:23 (GMT)
commitd010dca55fd7a02e3fe6e50910359d8d4915f003 (patch)
tree51976c1e3d6ee61236801eab64ad438ba5499943 /library/button.tcl
parent16e849012c5065caad307d5733660750a6e35204 (diff)
downloadtk-d010dca55fd7a02e3fe6e50910359d8d4915f003.zip
tk-d010dca55fd7a02e3fe6e50910359d8d4915f003.tar.gz
tk-d010dca55fd7a02e3fe6e50910359d8d4915f003.tar.bz2
plugin update
Diffstat (limited to 'library/button.tcl')
-rw-r--r--library/button.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/button.tcl b/library/button.tcl
index b017b80..e17997e 100644
--- a/library/button.tcl
+++ b/library/button.tcl
@@ -69,12 +69,12 @@ if {$tcl_platform(platform) == "windows"} {
}
if {$tcl_platform(platform) == "unix"} {
bind Checkbutton <Return> {
- if !$tk_strictMotif {
+ if {!$tk_strictMotif} {
tkCheckRadioInvoke %W
}
}
bind Radiobutton <Return> {
- if !$tk_strictMotif {
+ if {!$tk_strictMotif} {
tkCheckRadioInvoke %W
}
}