diff options
author | dgp <dgp@users.sourceforge.net> | 2004-10-27 16:37:57 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-10-27 16:37:57 (GMT) |
commit | de2bd3e7b1c90ac227eb59dd99dda24ce4ef99d7 (patch) | |
tree | 59ab7895ef2910d113a343516403596725cbca1b /library/xmfbox.tcl | |
parent | fc8de5cf3833c790dbcba9f6af1ea9ed02167aad (diff) | |
download | tk-de2bd3e7b1c90ac227eb59dd99dda24ce4ef99d7.zip tk-de2bd3e7b1c90ac227eb59dd99dda24ce4ef99d7.tar.gz tk-de2bd3e7b1c90ac227eb59dd99dda24ce4ef99d7.tar.bz2 |
* library/xmfbox.tcl (MotifFDialog_BuildUI): Fix [Bug 987169] in
the Motif file dialogs as well. Backport of DKF bug fix.
Diffstat (limited to 'library/xmfbox.tcl')
-rw-r--r-- | library/xmfbox.tcl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index 67e2804..6093da3 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.25 2003/02/18 21:19:35 hobbs Exp $ +# RCS: @(#) $Id: xmfbox.tcl,v 1.25.2.1 2004/10/27 16:37:59 dgp Exp $ # # Copyright (c) 1996 Sun Microsystems, Inc. # Copyright (c) 1998-2000 Scriptics Corporation @@ -54,9 +54,10 @@ proc ::tk::MotifFDialog {type args} { # restore any grab that was in effect. vwait ::tk::Priv(selectFilePath) + set result $Priv(selectFilePath) ::tk::RestoreFocusGrab $w $data(sEnt) withdraw - return $Priv(selectFilePath) + return $result } # ::tk::MotifFDialog_Create -- @@ -378,6 +379,8 @@ proc ::tk::MotifFDialog_BuildUI {w} { bind $data(fEnt) <Return> [list tk::MotifFDialog_ActivateFEnt $w] bind $data(sEnt) <Return> [list tk::MotifFDialog_ActivateSEnt $w] + bind $w <Escape> [list tk::MotifFDialog_CancelCmd $w] + bind $w.bot <Destroy> {set ::tk::Priv(selectFilePath) {}} wm protocol $w WM_DELETE_WINDOW [list tk::MotifFDialog_CancelCmd $w] } |