diff options
author | mdejong <mdejong@noemail.net> | 2002-07-22 21:25:37 (GMT) |
---|---|---|
committer | mdejong <mdejong@noemail.net> | 2002-07-22 21:25:37 (GMT) |
commit | 0b56c0c6afdf599a3a1b510dc1b2ec4befe1f80f (patch) | |
tree | 7b1b413ea71bc06edbf8d7d2f22055d73208e5e8 /library/xmfbox.tcl | |
parent | 750112901f374ac2e35d7b41dd966d9e19fd4d23 (diff) | |
download | tk-0b56c0c6afdf599a3a1b510dc1b2ec4befe1f80f.zip tk-0b56c0c6afdf599a3a1b510dc1b2ec4befe1f80f.tar.gz tk-0b56c0c6afdf599a3a1b510dc1b2ec4befe1f80f.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.
FossilOrigin-Name: 292849c2409f5249983e7e27590973fb92ae2c0a
Diffstat (limited to 'library/xmfbox.tcl')
-rw-r--r-- | library/xmfbox.tcl | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index 74eff0e..f603ace 100644 --- a/library/xmfbox.tcl +++ b/library/xmfbox.tcl @@ -4,7 +4,7 @@ # Unix platform. This implementation is used only if the # "::tk_strictMotif" flag is set. # -# RCS: @(#) $Id: xmfbox.tcl,v 1.22 2002/06/13 06:17:21 mdejong Exp $ +# RCS: @(#) $Id: xmfbox.tcl,v 1.23 2002/07/22 21:25:39 mdejong Exp $ # # Copyright (c) 1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Scriptics Corporation @@ -56,13 +56,6 @@ proc ::tk::MotifFDialog {type args} { vwait ::tk::Priv(selectFilePath) ::tk::RestoreFocusGrab $w $data(sEnt) withdraw - # Remove the transient property to insulate the - # dialog from changes in the master's state. - - if {[winfo exists $w]} { - wm transient $w {} - } - return $Priv(selectFilePath) } |