diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-02-19 13:58:04 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-02-19 13:58:04 +0100 |
| commit | a568c76b75e987a33d2f7a65aa483447cf55e442 (patch) | |
| tree | e30718db77b8e6bb8e57a82500fb20e4f35bb43a /lib/python/Screens | |
| parent | 0abd3c974bc5f2c79948972a3f10f6c968e42016 (diff) | |
| parent | 6bb47ff06e84149578671195a702e22ada245d37 (diff) | |
| download | enigma2-a568c76b75e987a33d2f7a65aa483447cf55e442.tar.gz enigma2-a568c76b75e987a33d2f7a65aa483447cf55e442.zip | |
Merge branch 'master' of /home/tmbinc/enigma2-git
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] |
