From 58445511632b8e6c043e6bf7e5ef63630ecbc829 Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Mon, 14 Nov 2005 23:18:16 +0000 Subject: [PATCH] audioselection is working now --- lib/python/Screens/AudioSelection.py | 14 +++++++++----- 1 file 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 -- 2.30.2