aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorFraxinas <andreas.frisch@multimedia-labs.de>2011-01-28 10:59:51 +0100
committerFraxinas <andreas.frisch@multimedia-labs.de>2011-01-28 10:59:51 +0100
commitca7333ab52acb1fd4cb19dc2b2817507a8ae9d75 (patch)
treeef85afabd378ea3b57322b2afd2a5ea8ea7752bf /lib/python/Screens
parent6b2d6f1d24af4d81fda1e9ebc4d11a5df3e8110a (diff)
downloadenigma2-ca7333ab52acb1fd4cb19dc2b2817507a8ae9d75.tar.gz
enigma2-ca7333ab52acb1fd4cb19dc2b2817507a8ae9d75.zip
DVDPlayer subtitle stream selection through enigma2 AudioSelection dialog (#441)
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/AudioSelection.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/AudioSelection.py b/lib/python/Screens/AudioSelection.py
index 576fd381..b3b82b46 100644
--- a/lib/python/Screens/AudioSelection.py
+++ b/lib/python/Screens/AudioSelection.py
@@ -84,7 +84,7 @@ class AudioSelection(Screen, ConfigListScreen):
conflist.append(getConfigListEntry(_("Channel"), self.settings.channelmode))
self["key_green"].setBoolean(True)
else:
- conflist.append(getConfigListEntry("", ConfigNothing()))
+ conflist.append(('',))
self["key_green"].setBoolean(False)
selectedAudio = self.audioTracks.getCurrentTrack()
for x in range(n):
@@ -141,7 +141,7 @@ class AudioSelection(Screen, ConfigListScreen):
language = _("<unknown>")
selected = ""
- if sel and x[:4] == sel[:4]:
+ if sel and x == sel:
selected = _("Running")
selectedidx = idx