aboutsummaryrefslogtreecommitdiffstats
path: root/solo_tool.py
diff options
context:
space:
mode:
authorEddy Pedroni <eddy@0xf7.com>2021-12-25 23:47:00 +0100
committerEddy Pedroni <eddy@0xf7.com>2021-12-25 23:47:00 +0100
commit10aa8140b5e52cc0cf8cea794daf81fb0ffdcad3 (patch)
tree9bf5e9231ff703b90ed0dd6790588de95d14c2b9 /solo_tool.py
parent71593d438dff1a54986c94b469faa31c4581f6c7 (diff)
Renamed some functions, added known issue
Diffstat (limited to 'solo_tool.py')
-rw-r--r--solo_tool.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/solo_tool.py b/solo_tool.py
index 79913a4..8530125 100644
--- a/solo_tool.py
+++ b/solo_tool.py
@@ -33,11 +33,11 @@ class SoloTool:
def getSongs(self):
return self._playlist.getSongs()
- def addAbLimit(self, aLimit, bLimit):
- self._abController.addLimits(aLimit, bLimit)
+ def storeAbLimits(self, aLimit, bLimit):
+ self._abController.storeLimits(aLimit, bLimit)
def setAbLimit(self, index):
- self._abController.setCurrentLimits(index)
+ self._abController.loadLimits(index)
def getAbLimits(self):
currentSong = self._playlist.getCurrentSong()