diff options
author | mdejong <mdejong> | 2002-06-13 06:17:21 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2002-06-13 06:17:21 (GMT) |
commit | 00eb28810aae93e396001907717682efb48960d4 (patch) | |
tree | 5d8066453be4b1d16170803d1ae501fac752a956 /library/choosedir.tcl | |
parent | 1f8f56c938ebe9865f17d61ef79173662698fc2f (diff) | |
download | tk-00eb28810aae93e396001907717682efb48960d4.zip tk-00eb28810aae93e396001907717682efb48960d4.tar.gz tk-00eb28810aae93e396001907717682efb48960d4.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): Remove the
transient property on dialogs after they have been
dismissed to insulate them from further state changes
in the master. This keeps a withdrawn dialog from
being mapped when the master is deiconified. [Tk patch 568278]
Diffstat (limited to 'library/choosedir.tcl')
-rw-r--r-- | library/choosedir.tcl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/library/choosedir.tcl b/library/choosedir.tcl index e224d60..3875c7b 100644 --- a/library/choosedir.tcl +++ b/library/choosedir.tcl @@ -5,7 +5,7 @@ # Copyright (c) 1998-2000 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: choosedir.tcl,v 1.13 2002/06/12 23:08:12 mdejong Exp $ +# RCS: @(#) $Id: choosedir.tcl,v 1.14 2002/06/13 06:17:21 mdejong Exp $ # Make sure the tk::dialog namespace, in which all dialogs should live, exists namespace eval ::tk::dialog {} @@ -96,6 +96,13 @@ proc ::tk::dialog::file::chooseDir:: {args} { ::tk::RestoreFocusGrab $w $data(ent) withdraw + # Remove the transient property to insulate the + # dialog from changes in the master's state. + + if {[winfo exists $w]} { + wm transient $w {} + } + # Cleanup traces on selectPath variable # |