summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjenglish <jenglish@flightlab.com>2002-06-11 18:59:25 (GMT)
committerjenglish <jenglish@flightlab.com>2002-06-11 18:59:25 (GMT)
commit72d83b662b05709150ca4d85040a0d35313a669d (patch)
tree99c032808e81d623a3d12fe6941903f60b820a6b /library
parentd4a5d95942188d8edd7345c4ac6e6b3482387bd3 (diff)
downloadtk-72d83b662b05709150ca4d85040a0d35313a669d.zip
tk-72d83b662b05709150ca4d85040a0d35313a669d.tar.gz
tk-72d83b662b05709150ca4d85040a0d35313a669d.tar.bz2
fix for bug report #530212 "Bad Window Path Name in tkMenuFind"
Diffstat (limited to 'library')
-rw-r--r--library/menu.tcl8
1 files changed, 3 insertions, 5 deletions
diff --git a/library/menu.tcl b/library/menu.tcl
index 5f7352b..e0c1fe9 100644
--- a/library/menu.tcl
+++ b/library/menu.tcl
@@ -4,7 +4,7 @@
# It also implements keyboard traversal of menus and implements a few
# other utility procedures related to menus.
#
-# RCS: @(#) $Id: menu.tcl,v 1.15 2001/11/27 14:08:04 drh Exp $
+# RCS: @(#) $Id: menu.tcl,v 1.16 2002/06/11 18:59:25 jenglish Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -920,8 +920,7 @@ proc ::tk::MenuFind {w char} {
foreach child $windowlist {
# Don't descend into other toplevels.
- if {[string compare [winfo toplevel [focus]] \
- [winfo toplevel $child]]} {
+ if {[string compare [winfo toplevel $w] [winfo toplevel $child]]} {
continue
}
if {[string equal [winfo class $child] "Menu"] && \
@@ -948,8 +947,7 @@ proc ::tk::MenuFind {w char} {
foreach child $windowlist {
# Don't descend into other toplevels.
- if {[string compare [winfo toplevel [focus]] \
- [winfo toplevel $child]]} {
+ if {[string compare [winfo toplevel $w] [winfo toplevel $child]]} {
continue
}
switch [winfo class $child] {