diff options
author | dgp <dgp@users.sourceforge.net> | 2012-11-15 19:31:20 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-11-15 19:31:20 (GMT) |
commit | 0b6e717a44dff02a2ce046473bbe798a8e07d6c9 (patch) | |
tree | 926c9c2655af85d9275fb6665b9ec2fa628f2093 /library/button.tcl | |
parent | ab074760921c8bd030d145b68aadf3992117d920 (diff) | |
download | tk-0b6e717a44dff02a2ce046473bbe798a8e07d6c9.zip tk-0b6e717a44dff02a2ce046473bbe798a8e07d6c9.tar.gz tk-0b6e717a44dff02a2ce046473bbe798a8e07d6c9.tar.bz2 |
More complete purge of things only present for supporting long-dead Mac 9 systems.
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 195566e..fe92034 100644 --- a/library/button.tcl +++ b/library/button.tcl @@ -16,7 +16,7 @@ # The code below creates the default class bindings for buttons. #------------------------------------------------------------------------- -if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} { +if {[tk windowingsystem] eq "aqua"} { bind Radiobutton <Enter> { tk::ButtonEnter %W } @@ -442,7 +442,7 @@ proc ::tk::ButtonUp w { } -if {[tk windowingsystem] eq "classic" || [tk windowingsystem] eq "aqua"} { +if {[tk windowingsystem] eq "aqua"} { #################### # Mac implementation |