Ignore:
Timestamp:
May 14, 2013, 2:33:30 PM (11 years ago)
Author:
gah
Message:

add string trim to inputs

File:
1 edited

Legend:

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

    r3642 r3647  
    577577        foreach name $showing {
    578578            set wv $_name2info($name-value)
    579             $wv configure -heading no
    580 
    581             set label [$wv component heading cget -text]
    582             if {"" == $label} {
    583                 set label "Group #$gn"
    584             }
    585             set _name2info($name-label) $label
    586             $_tabs insert end $name -text $label \
    587                 -activebackground $itk_option(-background) \
    588                 -window $_frame -fill both
    589 
    590             incr gn
     579            if { [winfo class $wv] == "GroupEntry" } {
     580                $wv configure -heading no
     581                set label [$wv component heading cget -text]
     582                if {"" == $label} {
     583                    set label "Group #$gn"
     584                }
     585                set _name2info($name-label) $label
     586                $_tabs insert end $name -text $label \
     587                    -activebackground $itk_option(-background) \
     588                    -window $_frame -fill both
     589                incr gn
    591590        }
    592591
Note: See TracChangeset for help on using the changeset viewer.