From: Stefan Pluecken Date: Thu, 24 Jan 2008 22:16:17 +0000 (+0000) Subject: - fix bluescreen caused by wrong list handling X-Git-Tag: 2.6.0~1606 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/22091210a13049f7a5a0da83cc6213c371bc287c - fix bluescreen caused by wrong list handling --- 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"