summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorhobbs <hobbs>2007-12-05 22:29:50 (GMT)
committerhobbs <hobbs>2007-12-05 22:29:50 (GMT)
commitab1902502a451d836be9853c148ee929d29c261a (patch)
tree009dd3098e13278aa9830d1aa23f3cb68dd7d104 /library
parent56eab6d60509309df89b7213d50493c7f6627b99 (diff)
downloadtk-ab1902502a451d836be9853c148ee929d29c261a.zip
tk-ab1902502a451d836be9853c148ee929d29c261a.tar.gz
tk-ab1902502a451d836be9853c148ee929d29c261a.tar.bz2
* library/demos/widget: reduce start size to 70% of screenheight
from sh-200 for a more reasonable size.
Diffstat (limited to 'library')
-rw-r--r--library/demos/widget4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/widget b/library/demos/widget
index 47d97d7..f3b9186 100644
--- a/library/demos/widget
+++ b/library/demos/widget
@@ -10,7 +10,7 @@ exec wish "$0" "$@"
# separate ".tcl" files is this directory, which are sourced by this script as
# needed.
#
-# RCS: @(#) $Id: widget,v 1.47 2007/11/04 10:38:09 das Exp $
+# RCS: @(#) $Id: widget,v 1.48 2007/12/05 22:29:50 hobbs Exp $
package require Tcl 8.5
package require Tk 8.5
@@ -142,7 +142,7 @@ pack .statusBar -side bottom -fill x -pady 2
set textheight 30
catch {
set textheight [expr {
- ([winfo screenheight .] - 200) /
+ ([winfo screenheight .] * 0.7) /
[font metrics mainFont -displayof . -linespace]
}]
}