From 8622638f99277b43d40b61029dc3c56164d06cae Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Sun, 26 Dec 2021 21:14:40 +0100 Subject: Changed default behaviour of AB controller --- abcontroller.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'abcontroller.py') diff --git a/abcontroller.py b/abcontroller.py index 80f6a4d..b67d38a 100644 --- a/abcontroller.py +++ b/abcontroller.py @@ -7,7 +7,7 @@ class ABController: self._setPositionCallback = callback self._limits = dict() # dictionary of all songs self._songLimits = None # list of limits for selected song - self._currentLimits = None # a/b positions of selected limit + self._currentLimits = _AB(0.0, 0.0) # a/b positions of selected limit self._enabled = enabled def _ensureSongExists(self, path): @@ -17,7 +17,7 @@ class ABController: def setCurrentSong(self, path): self._ensureSongExists(path) self._songLimits = self._limits[path] - self._currentLimits = None + #self._currentLimits = None def storeLimits(self, aLimit, bLimit, song=None): if song is not None: @@ -42,6 +42,7 @@ class ABController: def positionChanged(self, position): if not self._currentLimits: return + print("No early return") if position > self._currentLimits.b and self._setPositionCallback and self._enabled: self._setPositionCallback(self._currentLimits.a) -- cgit v1.2.3