diff options
author | mdejong <mdejong@noemail.net> | 2002-06-13 06:17:20 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2002-06-13 06:17:20 (GMT) |
commit | 888701a7372bc670bea37b394dad4847b36e737e (patch) | |
tree | 5d8066453be4b1d16170803d1ae501fac752a956 /library/choosedir.tcl | |
parent | a5cebe0205baaeefb7e02687a0ef9ff5da5677d1 (diff) | |
download | tk-888701a7372bc670bea37b394dad4847b36e737e.zip tk-888701a7372bc670bea37b394dad4847b36e737e.tar.gz tk-888701a7372bc670bea37b394dad4847b36e737e.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]
FossilOrigin-Name: e3449e31355a45e3e239f8ad595515b228bd311c
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 # |