summaryrefslogtreecommitdiffstats
path: root/library/tearoff.tcl
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2010-01-03 01:15:08 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2010-01-03 01:15:08 (GMT)
commitbcf3d9f03773bc0637c730660eb32b008a923422 (patch)
tree2e1fad072aa365bbe4116b0b719708841842a43d /library/tearoff.tcl
parentd566cea9a4b9f90bc578fdedfb632bbd2eea9409 (diff)
downloadtk-bcf3d9f03773bc0637c730660eb32b008a923422.zip
tk-bcf3d9f03773bc0637c730660eb32b008a923422.tar.gz
tk-bcf3d9f03773bc0637c730660eb32b008a923422.tar.bz2
tearoff menus should be transient and use the toolwindow style on Windows
Diffstat (limited to 'library/tearoff.tcl')
-rw-r--r--library/tearoff.tcl7
1 files changed, 6 insertions, 1 deletions
diff --git a/library/tearoff.tcl b/library/tearoff.tcl
index 9a8bd28..3a99a2d 100644
--- a/library/tearoff.tcl
+++ b/library/tearoff.tcl
@@ -2,7 +2,7 @@
#
# This file contains procedures that implement tear-off menus.
#
-# RCS: @(#) $Id: tearoff.tcl,v 1.11 2007/04/23 21:16:43 das Exp $
+# RCS: @(#) $Id: tearoff.tcl,v 1.12 2010/01/03 01:15:08 patthoyts Exp $
#
# Copyright (c) 1994 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -80,6 +80,11 @@ proc ::tk::TearOffMenu {w {x 0} {y 0}} {
}
}
+ if {[tk windowingsystem] eq "win32"} {
+ wm transient $menu [winfo toplevel $parent]
+ wm attributes $menu -toolwindow 1
+ }
+
$menu post $x $y
if {[winfo exists $menu] == 0} {