improve Simulation->Monitor current simulation to also display sim stdout after simulation is completed
This commit is contained in:
parent
947406481a
commit
9de818c8e9
|
|
@ -327,7 +327,9 @@ proc execute {status args} {
|
||||||
proc view_current_sim_output {} {
|
proc view_current_sim_output {} {
|
||||||
global execute viewdata_wcounter
|
global execute viewdata_wcounter
|
||||||
if {[catch { set t $execute(data,$execute(id)) } err]} {
|
if {[catch { set t $execute(data,$execute(id)) } err]} {
|
||||||
set t $err
|
if {[catch { set t $execute(data,last) } err]} {
|
||||||
|
set t $err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
viewdata $t ro
|
viewdata $t ro
|
||||||
.view${viewdata_wcounter}.text yview moveto 1
|
.view${viewdata_wcounter}.text yview moveto 1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue