From 3eed7537f8cc0221a81951b24ef965f6b7f35d6e Mon Sep 17 00:00:00 2001 From: Eddy Pedroni Date: Tue, 4 Jan 2022 14:58:39 +0100 Subject: Added song and AB limits change notification --- playlist.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'playlist.py') 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 -- cgit v1.2.3