Ignore:
Timestamp:
Apr 1, 2016 10:28:56 AM (8 years ago)
Author:
gah
Message:

fix: code to _job(exitcode) in task.tcl, add -nosim configuration option to pager, use -nosim in analyzer to prevent automatically simulating when switching pages

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.7/gui/scripts/pager.tcl

    r5679 r6231  
    6767    private variable _page2info      ;# maps page name => -frame,-title,-command
    6868    private variable _current ""     ;# page currently shown
     69    public variable nosim 0
    6970}
    7071
     
    374375            # invoke it now.
    375376            #
    376             if {"" != $_current
    377                   && [string length $_page2info($_current-command)] > 0} {
     377            if {"" != $_current && !$nosim &&
     378                  [string length $_page2info($_current-command)] > 0} {
    378379                uplevel #0 $_page2info($_current-command)
    379380            }
Note: See TracChangeset for help on using the changeset viewer.