From 22091210a13049f7a5a0da83cc6213c371bc287c Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Thu, 24 Jan 2008 22:16:17 +0000 Subject: [PATCH] - fix bluescreen caused by wrong list handling --- lib/python/Screens/Wizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.30.2