From: Felix Domke Date: Sat, 25 Aug 2007 00:02:08 +0000 (+0000) Subject: get and select current audio track X-Git-Tag: 2.6.0~1951 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/309f38ffddbc90495d0a1a2dd6d5042b633785b4 get and select current audio track --- diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index fd2e0e95..d7683cac 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -1468,7 +1468,6 @@ class InfoBarAudioSelection: n = audio and audio.getNumberOfTracks() or 0 keys = [ "red", "", "1", "2", "3", "4", "5", "6", "7", "8", "9", "0"] + [""]*n tlist = [] - print "tlist:", tlist if n > 0: self.audioChannel = service.audioChannel() @@ -1487,8 +1486,8 @@ class InfoBarAudioSelection: tlist.append((description, x)) - selectedAudio = tlist[0][1] - tlist.sort(lambda x,y : cmp(x[0], y[0])) + selectedAudio = audio.getCurrentTrack() + tlist.sort(key=lambda x: x[0]) selection = 2 for x in tlist: