aboutsummaryrefslogtreecommitdiffstats
path: root/playlist.py
diff options
context:
space:
mode:
authorEddy Pedroni <eddy@0xf7.com>2022-01-04 14:58:39 +0100
committerEddy Pedroni <eddy@0xf7.com>2022-01-04 14:58:39 +0100
commit3eed7537f8cc0221a81951b24ef965f6b7f35d6e (patch)
tree11158ffd5c6d4d7403e6bde07308b0c3c4e65999 /playlist.py
parent3066dbcdd863342d3c9534886434d6e8aaa45367 (diff)
Added song and AB limits change notification
Diffstat (limited to 'playlist.py')
-rw-r--r--playlist.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/playlist.py b/playlist.py
index 2880733..5dad711 100644
--- a/playlist.py
+++ b/playlist.py
@@ -17,6 +17,9 @@ class Playlist:
index = self._currentSong
return self._songList[index] if index is not None else None
+ def getCurrentSongIndex(self):
+ return self._currentSong
+
def getSongs(self):
return self._songList