aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/AudioSelection.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/python/Screens/AudioSelection.py b/lib/python/Screens/AudioSelection.py
index a3700ce8..6e3a288e 100644
--- a/lib/python/Screens/AudioSelection.py
+++ b/lib/python/Screens/AudioSelection.py
@@ -4,24 +4,28 @@ from Components.MenuList import MenuList
from Components.Label import Label
class AudioSelection(Screen):
+ def KeyOk(self):
+ selection = self["tracks"].getCurrent()
+ print "select track " + str(selection[1])
+ self.audio.selectTrack(selection[1])
+ self.close()
def __init__(self, session, audio):
Screen.__init__(self, session)
self["actions"] = ActionMap(["SetupActions"],
{
"cancel": self.close,
- "ok": self.close,
+ "ok": self.KeyOk,
})
- tlist = []
+ self.audio = audio
+ tlist = []
n = audio.getNumberOfTracks()
- print "AUDIO TRACKS:"
for x in range(n):
i = audio.getTrackInfo(x)
- print i.getDescription()
tlist.append((i.getDescription(), x))
self["tracks"] = MenuList(tlist)
- #self["tracks"] = Label("Blasel")
+
\ No newline at end of file