diff options
author | welch <welch> | 1998-06-27 18:05:23 (GMT) |
---|---|---|
committer | welch <welch> | 1998-06-27 18:05:23 (GMT) |
commit | d010dca55fd7a02e3fe6e50910359d8d4915f003 (patch) | |
tree | 51976c1e3d6ee61236801eab64ad438ba5499943 /library/button.tcl | |
parent | 16e849012c5065caad307d5733660750a6e35204 (diff) | |
download | tk-d010dca55fd7a02e3fe6e50910359d8d4915f003.zip tk-d010dca55fd7a02e3fe6e50910359d8d4915f003.tar.gz tk-d010dca55fd7a02e3fe6e50910359d8d4915f003.tar.bz2 |
plugin update
Diffstat (limited to 'library/button.tcl')
-rw-r--r-- | library/button.tcl | 4 |
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 } } |