diff options
Diffstat (limited to 'abcontroller.py')
-rw-r--r-- | abcontroller.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/abcontroller.py b/abcontroller.py index 2e08936..80f6a4d 100644 --- a/abcontroller.py +++ b/abcontroller.py @@ -19,7 +19,7 @@ class ABController: self._songLimits = self._limits[path] self._currentLimits = None - def addLimits(self, aLimit, bLimit, song=None): + def storeLimits(self, aLimit, bLimit, song=None): if song is not None: self._ensureSongExists(song) songLimits = self._limits[song] @@ -32,7 +32,7 @@ class ABController: ab = _AB(aLimit, bLimit) songLimits.append(ab) - def setCurrentLimits(self, index): + def loadLimits(self, index): if not self._songLimits: return |