diff options
author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-13 23:28:33 (GMT) |
---|---|---|
committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-05-13 23:28:33 (GMT) |
commit | 9bcc0fd84de3f1305946ec2b8b5a4d142aeceedf (patch) | |
tree | b8eac637376576f827f9746b3c412a722f4e78c3 /library | |
parent | b9ea1d7893e07c43556a22b57454cf87646872a6 (diff) | |
download | tk-9bcc0fd84de3f1305946ec2b8b5a4d142aeceedf.zip tk-9bcc0fd84de3f1305946ec2b8b5a4d142aeceedf.tar.gz tk-9bcc0fd84de3f1305946ec2b8b5a4d142aeceedf.tar.bz2 |
Shrank the font size of messages in the Unix/X11 [tk_messageBox]
It looks better like this. :^)
Diffstat (limited to 'library')
-rw-r--r-- | library/msgbox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/msgbox.tcl b/library/msgbox.tcl index eb6fc35..a1f2ed1 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.24.2.1 2003/03/14 21:30:58 dkf Exp $ +# RCS: @(#) $Id: msgbox.tcl,v 1.24.2.2 2004/05/13 23:28:34 dkf Exp $ # # Copyright (c) 1994-1997 Sun Microsystems, Inc. # @@ -280,7 +280,7 @@ proc ::tk::MessageBox {args} { || [string equal [tk windowingsystem] "aqua"]} { option add *Dialog.msg.font system widgetDefault } else { - option add *Dialog.msg.font {Times 18} widgetDefault + option add *Dialog.msg.font {Times 14} widgetDefault } label $w.msg -anchor nw -justify left -text $data(-message) \ |