diff options
author | fvogel <fvogelnew1@free.fr> | 2017-06-21 20:15:52 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2017-06-21 20:15:52 (GMT) |
commit | d128e0a7530de671cd860738c7f5a8c7c0daa30a (patch) | |
tree | 6f1ab25d2e7d2fe2ad166bf4facae8bd3edacb13 | |
parent | 6e4eb0606125762a717666ff72b145b0fc6d04a5 (diff) | |
parent | 65a9d62bbe3899939f951ae65b333de7765e8f1e (diff) | |
download | tk-d128e0a7530de671cd860738c7f5a8c7c0daa30a.zip tk-d128e0a7530de671cd860738c7f5a8c7c0daa30a.tar.gz tk-d128e0a7530de671cd860738c7f5a8c7c0daa30a.tar.bz2 |
Fix [adc028c8d00]: Keyboard menu traversal can generate a global grab that cannot be released. Patch from Keith Nash
-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 |