diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-01-07 16:33:48 +0100 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-01-07 16:33:48 +0100 |
commit | 97f3c945fe2e1369c2e21cef4a474fac3ce4d8db (patch) | |
tree | ba815fd14c4904bf25ef71927835888da8e62c1f /abcontroller.py | |
parent | 9efb5716cdbc1d0cfdcc14adc53c0a178cef951d (diff) |
Fixed AB controller bug
Diffstat (limited to 'abcontroller.py')
-rw-r--r-- | abcontroller.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/abcontroller.py b/abcontroller.py index 5c9bda7..99bd9d7 100644 --- a/abcontroller.py +++ b/abcontroller.py @@ -18,6 +18,7 @@ class ABController: def setCurrentSong(self, path): self._ensureSongExists(path) self._songLimits = self._limits[path] + self._loadedIndex = None def storeLimits(self, aLimit, bLimit, song=None): if song is not None: |