Changeset 2159
- Timestamp:
- Mar 28, 2011 10:24:40 AM (12 years ago)
- Location:
- trunk/gui/scripts
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gui/scripts/controls.tcl
r1929 r2159 421 421 set vwidget $_name2info($name-value) 422 422 if {[lsearch -exact {group image structure} $type] >= 0} { 423 if {$show } {423 if {$show ne "" && $show} { 424 424 lappend showing $name 425 425 } else { … … 429 429 # show other objects, but enable/disable them 430 430 lappend showing $name 431 if {$show } {431 if {$show ne "" && $show} { 432 432 if {[winfo exists $vwidget]} { 433 433 $vwidget configure -state normal -
trunk/gui/scripts/editor.tcl
r1850 r2159 162 162 wm deiconify $itk_component(hull) 163 163 raise $itk_component(hull) 164 focus $itk_component(editor)164 focus -force $itk_component(editor) 165 165 166 166 # try to grab the pointer, and keep trying... -
trunk/gui/scripts/main.tcl
r2081 r2159 21 21 # redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. 22 22 # ====================================================================== 23 24 # take the main window down for now, so we can avoid a flash on the screen 25 wm withdraw . 26 23 27 package require Itcl 24 28 package require Img … … 184 188 # MAIN WINDOW 185 189 # ---------------------------------------------------------------------- 186 wm withdraw .187 190 Rappture::MainWin .main -borderwidth 0 188 191 .main configure -title [$tool xml get tool.title] -
trunk/gui/scripts/switch.tcl
r1979 r2159 108 108 } 109 109 if {$itk_option(-showtext)} { 110 set text " \"yes\""110 set text "yes" 111 111 } 112 112 } else { … … 115 115 } 116 116 if {$itk_option(-showtext)} { 117 set text " \"no\""117 set text "no" 118 118 } 119 119 }
Note: See TracChangeset
for help on using the changeset viewer.