diff options
Diffstat (limited to 'library/msgbox.tcl')
-rw-r--r-- | library/msgbox.tcl | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/library/msgbox.tcl b/library/msgbox.tcl index bd62167..4208d2c 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.19 2002/06/12 23:08:12 mdejong Exp $ +# RCS: @(#) $Id: msgbox.tcl,v 1.20 2002/06/13 06:17:21 mdejong Exp $ # # Copyright (c) 1994-1997 Sun Microsystems, Inc. # @@ -404,5 +404,12 @@ 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) } |