Ignore:
Timestamp:
Feb 8, 2015 6:57:52 PM (9 years ago)
Author:
ldelgass
Message:

merge r4970 from trunk

Location:
branches/1.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/1.4

    • Property svn:mergeinfo changed
      /trunkmerged: 4970
  • branches/1.4/gui/scripts/tool.tcl

    r4531 r4984  
    3131    public method run {args} {
    3232        sync  ;# sync all widget values to XML
    33         eval $_task run $args
     33
     34        foreach {status result} [eval $_task run $args] break
     35        if {$status == 0} {
     36            # move good results to the data/results directory
     37            $_task save $result
     38        }
     39
     40        return [list $status $result]
    3441    }
    3542    public method abort {} {
Note: See TracChangeset for help on using the changeset viewer.