summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorhobbs <hobbs>1999-09-24 22:17:53 (GMT)
committerhobbs <hobbs>1999-09-24 22:17:53 (GMT)
commitcf037b7a78766c0e912a94a0b937a98d658faa02 (patch)
treec0a478c1900007383402a2d594a870fa69f09e8f /library
parente6c3dfd1b13969c68383847c3e15efa3f53ea0e5 (diff)
downloadtk-cf037b7a78766c0e912a94a0b937a98d658faa02.zip
tk-cf037b7a78766c0e912a94a0b937a98d658faa02.tar.gz
tk-cf037b7a78766c0e912a94a0b937a98d658faa02.tar.bz2
1999-09-24 Jeff Hobbs <hobbs@scriptics.com>
* unix/Makefile.in: changed 'mkdir' to 'mkdir -p' * library/dialog.tcl: changed {Times 18} to {Times 12} for dialog font.
Diffstat (limited to 'library')
-rw-r--r--library/dialog.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/dialog.tcl b/library/dialog.tcl
index be5a81e..5d13063 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.4 1999/04/16 01:51:26 stanton Exp $
+# RCS: @(#) $Id: dialog.tcl,v 1.4.6.1 1999/09/24 22:17:58 hobbs Exp $
#
# Copyright (c) 1992-1993 The Regents of the University of California.
# Copyright (c) 1994-1997 Sun Microsystems, Inc.
@@ -68,7 +68,7 @@ proc tk_dialog {w title text bitmap default args} {
if {![string compare $tcl_platform(platform) "macintosh"]} {
option add *Dialog.msg.font system widgetDefault
} else {
- option add *Dialog.msg.font {Times 18} widgetDefault
+ option add *Dialog.msg.font {Times 12} widgetDefault
}
label $w.msg -justify left -text $text