aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-01-25 01:08:08 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-01-25 01:08:08 +0000
commit4a043c2bc10981a946bd0ad8f955e1510db3fcaa (patch)
treec460a13336aab94e0bb461beb1196a9af690ee3b /lib/python
parent7d30259cc4f44f65507366600e6238a5decd275f (diff)
downloadenigma2-4a043c2bc10981a946bd0ad8f955e1510db3fcaa.tar.gz
enigma2-4a043c2bc10981a946bd0ad8f955e1510db3fcaa.zip
evaluate list changes
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Wizard.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 4fa0b303..8c49a89c 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -289,7 +289,9 @@ class Wizard(Screen, HelpableScreen):
elif (self.showList and len(self.wizard[self.currStep]["evaluatedlist"]) > 0):
self["list"].selectPrevious()
if self.wizard[self.currStep].has_key("onselect"):
+ print "current:", self["list"].current
self.selection = self["list"].current[1]
+ #self.selection = self.wizard[self.currStep]["evaluatedlist"][self["list"].l.getCurrentSelectionIndex()][1]
exec("self." + self.wizard[self.currStep]["onselect"] + "()")
print "up"
@@ -304,6 +306,9 @@ class Wizard(Screen, HelpableScreen):
print "current:", self["list"].current
#self.selection = self.wizard[self.currStep]["evaluatedlist"][self["list"].l.getCurrentSelectionIndex()][1]
#exec("self." + self.wizard[self.currStep]["onselect"] + "()")
+ self.selection = self["list"].current[1]
+ #self.selection = self.wizard[self.currStep]["evaluatedlist"][self["list"].l.getCurrentSelectionIndex()][1]
+ exec("self." + self.wizard[self.currStep]["onselect"] + "()")
print "down"
def selChanged(self):