aboutsummaryrefslogtreecommitdiff
path: root/demos/transforms.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'demos/transforms.tcl')
-rw-r--r--demos/transforms.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/transforms.tcl b/demos/transforms.tcl
index 9588044..4eb5e16 100644
--- a/demos/transforms.tcl
+++ b/demos/transforms.tcl
@@ -18,7 +18,7 @@ namespace eval transforms {
wm title $w "Zinc Transformation Demonstration"
wm iconname $w Transformation
- variable defaultfont [font create -family Helvetica -size 10 -weight bold]
+ variable defaultfont [font create -family Helvetica -size 14 -weight normal]
grid [button $w.dismiss -text Dismiss -command "destroy $w"] -row 3 -column 0 -pady 10
grid [button $w.code -text "See Code" -command "showCode $w"] -row 3 -column 1 -pady 10
@@ -53,7 +53,7 @@ namespace eval transforms {
variable zincHeight 500
grid [zinc $w.zinc -width $zincWidth -height $zincHeight \
- -font 10x20 -borderwidth 3 -relief sunken -takefocus 1 -render 0] \
+ -font $defaultfont -borderwidth 3 -relief sunken -takefocus 1 -render 0] \
-row 1 -column 0 -columnspan 2 -sticky news
grid columnconfigure $w 0 -weight 1
grid columnconfigure $w 1 -weight 1