diff options
author | das <das> | 2007-05-30 06:37:03 (GMT) |
---|---|---|
committer | das <das> | 2007-05-30 06:37:03 (GMT) |
commit | f3d210a9783984b6003f0a0bc94414d2adfe5260 (patch) | |
tree | 15eb2ed51b80e925a08ac127290e70a94dac2cef /library/bgerror.tcl | |
parent | e8a7346ab6321fdaaef3d8fda8c54cc1bebb9e12 (diff) | |
download | tk-f3d210a9783984b6003f0a0bc94414d2adfe5260.zip tk-f3d210a9783984b6003f0a0bc94414d2adfe5260.tar.gz tk-f3d210a9783984b6003f0a0bc94414d2adfe5260.tar.bz2 |
* library/bgerror.tcl: standardize dialog option & button size
* library/dialog.tcl: modifications done when running on on Aqua.
* library/msgbox.tcl:
* library/demos/button.tcl: set button highlightbackground on Aqua.
Diffstat (limited to 'library/bgerror.tcl')
-rw-r--r-- | library/bgerror.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/bgerror.tcl b/library/bgerror.tcl index 50933d4..48c212e 100644 --- a/library/bgerror.tcl +++ b/library/bgerror.tcl @@ -9,8 +9,8 @@ # Copyright (c) 1998-2000 by Ajuba Solutions. # All rights reserved. # -# RCS: @(#) $Id: bgerror.tcl,v 1.23.2.7 2007/04/29 02:24:49 das Exp $ -# $Id: bgerror.tcl,v 1.23.2.7 2007/04/29 02:24:49 das Exp $ +# RCS: @(#) $Id: bgerror.tcl,v 1.23.2.8 2007/05/30 06:37:03 das Exp $ +# $Id: bgerror.tcl,v 1.23.2.8 2007/05/30 06:37:03 das Exp $ namespace eval ::tk::dialog::error { namespace import -force ::tk::msgcat::* @@ -229,7 +229,7 @@ proc ::tk::dialog::error::bgerror err { if {($tcl_platform(platform) eq "macintosh") || ($windowingsystem eq "aqua")} { if {($name eq "ok") || ($name eq "dismiss")} { - grid columnconfigure .bgerrorDialog.bot $i -minsize 79 + grid columnconfigure .bgerrorDialog.bot $i -minsize 90 } grid configure .bgerrorDialog.$name -pady 7 } |