summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/ivymon6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ivymon b/src/ivymon
index 9c9725b..b72c6fc 100755
--- a/src/ivymon
+++ b/src/ivymon
@@ -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