aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-02-20 02:23:57 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-02-20 02:23:57 +0100
commit29d62cc699d7043a749e6f184925b7fd14b5daab (patch)
tree2625af9fa842a87817c592d9b7f5a73208856a98 /lib/python/Screens
parente180b709f892553d73784a30dc32e8251ad7b544 (diff)
parenta568c76b75e987a33d2f7a65aa483447cf55e442 (diff)
downloadenigma2-29d62cc699d7043a749e6f184925b7fd14b5daab.tar.gz
enigma2-29d62cc699d7043a749e6f184925b7fd14b5daab.zip
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Screens')
-rwxr-xr-xlib/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 2326b915..7d454f43 100755
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -475,6 +475,11 @@ class Wizard(Screen):
self.currStep += 1
self.updateValues()
else:
+ if self.wizard[self.currStep].has_key("displaytext"):
+ displaytext = self.wizard[self.currStep]["displaytext"]
+ print "set LCD text"
+ for x in self.lcdCallbacks:
+ x(displaytext)
if len(self.stepHistory) == 0 or self.stepHistory[-1] != self.currStep:
self.stepHistory.append(self.currStep)
print "wizard step:", self.wizard[self.currStep]