summaryrefslogtreecommitdiffstats
path: root/library/entry.tcl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-03 07:23:24 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-03 07:23:24 (GMT)
commit2e1a2e301249b913cac77a3a9631f3005115e246 (patch)
treea7d8607222c83d320eae6db152a05517eb4883af /library/entry.tcl
parentb098fed752fbc72a9b83c0d4869e140a12913857 (diff)
downloadtk-2e1a2e301249b913cac77a3a9631f3005115e246.zip
tk-2e1a2e301249b913cac77a3a9631f3005115e246.tar.gz
tk-2e1a2e301249b913cac77a3a9631f3005115e246.tar.bz2
Handle "Commmand-" bindings platform-dependant too
Diffstat (limited to 'library/entry.tcl')
-rw-r--r--library/entry.tcl4
1 files changed, 1 insertions, 3 deletions
diff --git a/library/entry.tcl b/library/entry.tcl
index bdd9fcc..99f6eb4 100644
--- a/library/entry.tcl
+++ b/library/entry.tcl
@@ -209,9 +209,7 @@ bind Entry <KP_Enter> {# nothing}
bind Entry <Tab> {# nothing}
bind Entry <Prior> {# nothing}
bind Entry <Next> {# nothing}
-if {[tk windowingsystem] eq "aqua"} {
- bind Entry <Command-Key> {# nothing}
-}
+bind Entry <Command-Key> {# nothing}
# Tk-on-Cocoa generates characters for these two keys. [Bug 2971663]
bind Entry <<NextLine>> {# nothing}
bind Entry <<PrevLine>> {# nothing}