Ignore:
Timestamp:
Jan 19, 2011, 6:32:48 PM (14 years ago)
Author:
braffert
Message:

Regression tester: adding tabs to view heirarchy of inputs and outputs for each test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tester/testtree.tcl

    r2050 r2053  
    6767    itk_component add treeview {
    6868        blt::treeview $itk_component(scrollbars).treeview -separator | \
    69             -autocreate true -selectmode single
     69            -autocreate true -selectmode multiple
    7070    } {
    7171        keep -foreground -font -cursor
     
    287287        runTest $id
    288288    }
    289     eval $itk_option(-selectcommand) -refresh
     289    # Try calling selectcommand with the -refresh option.  If selectcommand
     290    # does not accept this argument, then call it with no arguments.
     291    if {[catch {eval $itk_option(-selectcommand) -refresh}]} {
     292        eval $itk_option(-selectcommand)
     293    }
    290294}
    291295
Note: See TracChangeset for help on using the changeset viewer.