aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Wizard.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-01-24 22:16:17 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-01-24 22:16:17 +0000
commit22091210a13049f7a5a0da83cc6213c371bc287c (patch)
treee5d7febabe9cb863f973e3c17d32e4313ca43360 /lib/python/Screens/Wizard.py
parentd87e3beb37390b59d288ae1cb43d9f887754ed56 (diff)
downloadenigma2-22091210a13049f7a5a0da83cc6213c371bc287c.tar.gz
enigma2-22091210a13049f7a5a0da83cc6213c371bc287c.zip
- fix bluescreen caused by wrong list handling
Diffstat (limited to 'lib/python/Screens/Wizard.py')
-rw-r--r--lib/python/Screens/Wizard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index 2f76e3b1..4fa0b303 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -289,7 +289,7 @@ 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"):
- self.selection = self.wizard[self.currStep]["evaluatedlist"][self["list"].l.getCurrentSelectionIndex()][1]
+ self.selection = self["list"].current[1]
exec("self." + self.wizard[self.currStep]["onselect"] + "()")
print "up"