Changeset 1143


Ignore:
Timestamp:
Sep 5, 2008 11:28:30 AM (16 years ago)
Author:
dkearney
Message:

allowing the user to specify the name of the final simulation pagea (something other than Simulate) by using tool.action.label

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gui/apps/driver

    r991 r1143  
    188188# OUTPUT AREA
    189189# ----------------------------------------------------------------------
    190 $win.pager insert end -name analyzer -title "Simulate"
     190set simtxt [$xmlobj get tool.action.label]
     191if {"" == $simtxt} {
     192    set simtxt "Simulate"
     193}
     194$win.pager insert end -name analyzer -title $simtxt
    191195set f [$win.pager page analyzer]
    192196$win.pager page analyzer -command [subst {
Note: See TracChangeset for help on using the changeset viewer.