From 5ef22bb7e299c0f98f09b43e092cb85925b077b0 Mon Sep 17 00:00:00 2001 From: ericm Date: Fri, 10 Mar 2000 22:16:35 +0000 Subject: * library/menu.tcl: Applied patch from [Bug: 4155]; protects against grabs on non-viewable windows. --- ChangeLog | 11 +++++++++++ library/menu.tcl | 11 +++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 72e82fe..f65b6c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +2000-03-10 Eric Melski + + * library/menu.tcl: Applied patch from [Bug: 4155]; protects + against grabs on non-viewable windows. + +2000-03-08 Eric Melski + + * tests/choosedir.test: Modified test 3.1 (-mustexist works) to be + more careful about cleaning up its potentially troublesome after + events. + 2000-03-07 Eric Melski * tests/button.test: diff --git a/library/menu.tcl b/library/menu.tcl index 409955d..00c0e4c 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.9 2000/03/07 01:02:26 ericm Exp $ +# RCS: @(#) $Id: menu.tcl,v 1.10 2000/03/10 22:16:36 ericm Exp $ # # Copyright (c) 1992-1994 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -350,8 +350,10 @@ proc tkMbPost {w {x {}} {y {}}} { set tkPriv(tearoff) $tearoff if {$tearoff != 0} { focus $menu - tkSaveGrabInfo $w - grab -global $w + if {[winfo viewable $w]} { + tkSaveGrabInfo $w + grab -global $w + } } } @@ -561,7 +563,8 @@ proc tkMenuButtonDown menu { return } $menu postcascade active - if {[string compare $tkPriv(postedMb) ""]} { + if {[string compare $tkPriv(postedMb) ""] && \ + [winfo viewable $tkPriv(postedMb)]} { grab -global $tkPriv(postedMb) } else { while {[string equal [$menu cget -type] "normal"] \ -- cgit v0.12