diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-20 02:23:57 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-02-20 02:23:57 +0100 |
| commit | 29d62cc699d7043a749e6f184925b7fd14b5daab (patch) | |
| tree | 2625af9fa842a87817c592d9b7f5a73208856a98 /lib/python/Screens | |
| parent | e180b709f892553d73784a30dc32e8251ad7b544 (diff) | |
| parent | a568c76b75e987a33d2f7a65aa483447cf55e442 (diff) | |
| download | enigma2-29d62cc699d7043a749e6f184925b7fd14b5daab.tar.gz enigma2-29d62cc699d7043a749e6f184925b7fd14b5daab.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Screens')
| -rwxr-xr-x | lib/python/Screens/Wizard.py | 5 |
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] |
