diff options
Diffstat (limited to 'library/demos/check.tcl')
-rw-r--r-- | library/demos/check.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/check.tcl b/library/demos/check.tcl index cf21761..96ff251 100644 --- a/library/demos/check.tcl +++ b/library/demos/check.tcl @@ -30,8 +30,8 @@ checkbutton $w.b0 -text "Safety Check" -variable safety -relief flat \ checkbutton $w.b1 -text "Wipers OK" -variable wipers -relief flat checkbutton $w.b2 -text "Brakes OK" -variable brakes -relief flat checkbutton $w.b3 -text "Driver Sober" -variable sober -relief flat -pack $w.b0 -side top -pady 2 -anchor w -pack $w.b1 $w.b2 $w.b3 -side top -pady 2 -anchor w -padx 15 +pack $w.b0 -side top -pady 1.5p -anchor w +pack $w.b1 $w.b2 $w.b3 -side top -pady 1.5p -anchor w -padx 12p ## This code makes $w.b0 function as a tri-state button; it's not ## needed at all for just straight yes/no buttons. |