aboutsummaryrefslogtreecommitdiffstats
path: root/playlist.py
diff options
context:
space:
mode:
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