X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/51550aa81c726aedfa7159af0e67f8bcd5fb8a2f..f73d0bc413f59410c44b82437ec8b705a2f9ce76:/lib/python/Components/MediaPlayer.py diff --git a/lib/python/Components/MediaPlayer.py b/lib/python/Components/MediaPlayer.py index 84f7bec7..791274fc 100644 --- a/lib/python/Components/MediaPlayer.py +++ b/lib/python/Components/MediaPlayer.py @@ -22,7 +22,10 @@ ForwardIcon = LoadPixmap(resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/icons/i def PlaylistEntryComponent(serviceref, state): res = [ serviceref ] - res.append((eListboxPythonMultiContent.TYPE_TEXT,25, 0, 470, 32, 0, RT_VALIGN_CENTER, path.split(serviceref.getPath().split('/')[-1])[1])) + text = serviceref.getName() + if text is "": + text = path.split(serviceref.getPath().split('/')[-1])[1] + res.append((eListboxPythonMultiContent.TYPE_TEXT,25, 0, 470, 32, 0, RT_VALIGN_CENTER, text)) png = None if state == STATE_PLAY: png = PlayIcon @@ -61,6 +64,10 @@ class PlayList(MenuList): def addFile(self, serviceref): self.list.append(PlaylistEntryComponent(serviceref, STATE_NONE)) + def updateFile(self, index, newserviceref): + if index < len(self.list): + self.list[index] = PlaylistEntryComponent(newserviceref, STATE_NONE) + def deleteFile(self, index): if self.currPlaying >= index: self.currPlaying -= 1