diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-04-19 19:50:10 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-04-19 19:50:10 (GMT) |
commit | 9519ffb35649873f9567b3631d2680a2f90850ee (patch) | |
tree | 1fea5c5e76f6c4c284ca03133bda36141a09665e /library/entry.tcl | |
parent | 632db03ddf197db7bc4d6c4677cdf964a6b0223b (diff) | |
download | tk-9519ffb35649873f9567b3631d2680a2f90850ee.zip tk-9519ffb35649873f9567b3631d2680a2f90850ee.tar.gz tk-9519ffb35649873f9567b3631d2680a2f90850ee.tar.bz2 |
Fix [8dd3d58c62]: macOS Aqua: Fn + e to access Emoji
Diffstat (limited to 'library/entry.tcl')
-rw-r--r-- | library/entry.tcl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/entry.tcl b/library/entry.tcl index 6539af7..4140c92 100644 --- a/library/entry.tcl +++ b/library/entry.tcl @@ -211,6 +211,7 @@ bind Entry <Prior> {# nothing} bind Entry <Next> {# nothing} if {[tk windowingsystem] eq "aqua"} { bind Entry <Command-Key> {# nothing} + bind Entry <Mod4-Key> {# nothing} } # Tk-on-Cocoa generates characters for these two keys. [Bug 2971663] bind Entry <<NextLine>> {# nothing} |