summaryrefslogtreecommitdiffstats
path: root/library/msgbox.tcl
diff options
context:
space:
mode:
authormdejong <mdejong>2002-07-22 21:25:38 (GMT)
committermdejong <mdejong>2002-07-22 21:25:38 (GMT)
commit607c123568513d2c0d932c39baf3b485f2968344 (patch)
tree7b1b413ea71bc06edbf8d7d2f22055d73208e5e8 /library/msgbox.tcl
parent5c708a43ae7ec6e3cd2bc575a595265a2b08bc7e (diff)
downloadtk-607c123568513d2c0d932c39baf3b485f2968344.zip
tk-607c123568513d2c0d932c39baf3b485f2968344.tar.gz
tk-607c123568513d2c0d932c39baf3b485f2968344.tar.bz2
* library/choosedir.tcl (tk::dialog::file::chooseDir):
* library/clrpick.tcl (tk::dialog::file::chooseDir): * library/msgbox.tcl (tk::MessageBox): * library/tkfbox.tcl (tk::dialog::file): * library/xmfbox.tcl (tk::MotifFDialog): Revert [Tk patch 568278]. The transient window workaround is no longer needed since the fix for [Tk bug 570764] solved the problem for withdrawn transients.
Diffstat (limited to 'library/msgbox.tcl')
-rw-r--r--library/msgbox.tcl9
1 files changed, 1 insertions, 8 deletions
diff --git a/library/msgbox.tcl b/library/msgbox.tcl
index dce75a5..244f8ae 100644
--- a/library/msgbox.tcl
+++ b/library/msgbox.tcl
@@ -3,7 +3,7 @@
# Implements messageboxes for platforms that do not have native
# messagebox support.
#
-# RCS: @(#) $Id: msgbox.tcl,v 1.21 2002/06/28 09:01:58 dkf Exp $
+# RCS: @(#) $Id: msgbox.tcl,v 1.22 2002/07/22 21:25:39 mdejong Exp $
#
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
#
@@ -410,12 +410,5 @@ proc ::tk::MessageBox {args} {
::tk::RestoreFocusGrab $w $focus
- # Remove the transient property to insulate the
- # dialog from changes in the master's state.
-
- if {[winfo exists $w]} {
- wm transient $w {}
- }
-
return $Priv(button)
}