aboutsummaryrefslogtreecommitdiff
path: root/demos/transforms.tcl
diff options
context:
space:
mode:
authorlecoanet2004-05-07 15:31:01 +0000
committerlecoanet2004-05-07 15:31:01 +0000
commit9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7 (patch)
tree842972357fdc905c7353dacf88a10e78427b96d8 /demos/transforms.tcl
parent752ff8735f731e8d37fb1bea60b0323af1a1ec06 (diff)
downloadtkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.zip
tkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.tar.gz
tkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.tar.bz2
tkzinc-9f0d489e9cda59a8ed026be96fa56f9ecc1a33f7.tar.xz
Switched from pack to grid; Demos are put in a namespace; No more name aliases for fonts
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