diff options
author | kjnash <k.j.nash@usa.net> | 2017-06-13 03:39:54 (GMT) |
---|---|---|
committer | kjnash <k.j.nash@usa.net> | 2017-06-13 03:39:54 (GMT) |
commit | 65a9d62bbe3899939f951ae65b333de7765e8f1e (patch) | |
tree | 6f1ab25d2e7d2fe2ad166bf4facae8bd3edacb13 | |
parent | b97dc93effc45d8ab8a7725ac747c688774dd543 (diff) | |
download | tk-65a9d62bbe3899939f951ae65b333de7765e8f1e.zip tk-65a9d62bbe3899939f951ae65b333de7765e8f1e.tar.gz tk-65a9d62bbe3899939f951ae65b333de7765e8f1e.tar.bz2 |
Add "break" to "bind Menu <KeyPress>" in library/menu.tcl. Fixes bug adc028c8d0.bug_adc028c8d0
-rw-r--r-- | library/menu.tcl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/menu.tcl b/library/menu.tcl index b5dd88e..e1c94c9 100644 --- a/library/menu.tcl +++ b/library/menu.tcl @@ -170,6 +170,7 @@ bind Menu <<NextLine>> { } bind Menu <KeyPress> { tk::TraverseWithinMenu %W %A + break } # The following bindings apply to all windows, and are used to |