Changeset 746 for trunk


Ignore:
Timestamp:
May 18, 2007, 3:28:20 PM (17 years ago)
Author:
mmc
Message:

Fix for support ticket #1773 "bad window path name ".main.area..."
Added a band-aid into the whole GUI loading process. MOSFET has been
having trouble loading its structure. A fix for that caused this
problem in CNTbands v2.0. This will hold for now.

Location:
trunk/gui/scripts
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/scripts/combobox.tcl

    r676 r746  
    130130        }
    131131
    132         after 10 [list event generate $itk_component(hull) <<Value>>]
     132        after 10 [list catch [list event generate $itk_component(hull) <<Value>>]]
    133133    } elseif {[llength $args] != 0} {
    134134        error "wrong # args: should be \"value ?newval?\""
  • trunk/gui/scripts/loader.tcl

    r724 r746  
    217217    #
    218218    set str [$_owner xml get $path.default]
    219     if {$str != ""} { after 1000 [itcl::code $this value $str] }
     219    if {$str != ""} { after 1500 [itcl::code $this value $str] }
    220220}
    221221
  • trunk/gui/scripts/spinint.tcl

    r115 r746  
    124124        $itk_component(entry) delete 0 end
    125125        $itk_component(entry) insert 0 $newval
    126         after 10 [list event generate $itk_component(hull) <<Value>>]
     126        after 10 [list catch [list event generate $itk_component(hull) <<Value>>]]
    127127    } elseif {[llength $args] != 0} {
    128128        error "wrong # args: should be \"value ?newval?\""
Note: See TracChangeset for help on using the changeset viewer.