diff options
author | pspjuth <peter.spjuth@gmail.com> | 2004-01-25 01:28:55 (GMT) |
---|---|---|
committer | pspjuth <peter.spjuth@gmail.com> | 2004-01-25 01:28:55 (GMT) |
commit | 00be7f8944ba29e824b103b00b0748b842ac8c2e (patch) | |
tree | aaafa983e0dac06bd7695eea93c28b05bc07f5a2 /library/dialog.tcl | |
parent | 9d2ef7a46c28f65d45756cfb6d68dd742cf011b3 (diff) | |
download | tk-00be7f8944ba29e824b103b00b0748b842ac8c2e.zip tk-00be7f8944ba29e824b103b00b0748b842ac8c2e.tar.gz tk-00be7f8944ba29e824b103b00b0748b842ac8c2e.tar.bz2 |
The dialogs were affected by the TIP#146 implementation.
Added grid anchor commands to restore original behaviour.
Diffstat (limited to 'library/dialog.tcl')
-rw-r--r-- | library/dialog.tcl | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/library/dialog.tcl b/library/dialog.tcl index 398a494..e51e7a1 100644 --- a/library/dialog.tcl +++ b/library/dialog.tcl @@ -3,7 +3,7 @@ # This file defines the procedure tk_dialog, which creates a dialog # box containing a bitmap, a message, and one or more buttons. # -# RCS: @(#) $Id: dialog.tcl,v 1.15 2003/10/22 15:24:24 dkf Exp $ +# RCS: @(#) $Id: dialog.tcl,v 1.16 2004/01/25 01:29:15 pspjuth Exp $ # # Copyright (c) 1992-1993 The Regents of the University of California. # Copyright (c) 1994-1997 Sun Microsystems, Inc. @@ -78,6 +78,7 @@ proc ::tk_dialog {w title text bitmap default args} { } pack $w.bot -side bottom -fill both pack $w.top -side top -fill both -expand 1 + grid anchor $w.bot center # 2. Fill the top part with bitmap and message (use the option # database for -wraplength and -font so that they can be @@ -165,7 +166,7 @@ proc ::tk_dialog {w title text bitmap default args} { set y 0 } wm maxsize $w [winfo screenwidth $w] [winfo screenheight $w] - wm geom $w +$x+$y + wm geometry $w +$x+$y wm deiconify $w # 7. Set a grab and claim the focus too. @@ -199,10 +200,10 @@ proc ::tk_dialog {w title text bitmap default args} { destroy $w } if {[string compare $oldGrab ""]} { - if {[string compare $grabStatus "global"]} { + if {[string compare $grabStatus "global"]} { grab $oldGrab - } else { - grab -global $oldGrab + } else { + grab -global $oldGrab } } return $Priv(button) |