diff options
Diffstat (limited to 'src/ivymon')
-rwxr-xr-x | src/ivymon | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2395,8 +2395,6 @@ sub replayStart { return if $replay_running and not $loopflag; #print "abort 2 replayStart\n" if $loopflag and not $replay_running ; return if $loopflag and not $replay_running; - $replay_timer = $mw->after(1000*$replay_time_granularity/$replay_speed, - [\&replayStart, 1]) unless $replay_stepbystep; $replay_runnable = 0; $replay_running = 1; if ($replay_time > $replay_max_time) { @@ -2441,6 +2439,10 @@ sub replayStart { } $replay_running = 0; $replay_runnable = 1; + } else { + $replay_timer = $mw->after(1000*$replay_time_granularity/$replay_speed, + [\&replayStart, 1]); + } } # end replayStart |