We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3469b commit b757c46Copy full SHA for b757c46
1 file changed
isobar/timelines/clock_link.py
@@ -29,8 +29,14 @@ def __init__(self,
29
def start_stop_callback(is_starting):
30
logger.debug("Link: Start/Stop callback: is_starting=%s" % is_starting)
31
if is_starting:
32
+ if self.clock_target.is_running:
33
+ logger.debug("Timeline is already running, ignoring start message from Link")
34
+ return
35
self.clock_target.start()
36
else:
37
+ if not self.clock_target.is_running:
38
+ logger.debug("Timeline is not running, ignoring stop message from Link")
39
40
self.clock_target.stop()
41
self.clock_target.reset()
42
0 commit comments