improve Simulation->Monitor current simulation to also display sim stdout after simulation is completed

This commit is contained in:
stefan schippers 2023-03-05 01:01:43 +01:00
parent 947406481a
commit 9de818c8e9
1 changed files with 4 additions and 2 deletions

View File

@ -327,8 +327,10 @@ proc execute {status args} {
proc view_current_sim_output {} {
global execute viewdata_wcounter
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
.view${viewdata_wcounter}.text yview moveto 1