aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-19 13:58:04 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-19 13:58:04 +0100
commita568c76b75e987a33d2f7a65aa483447cf55e442 (patch)
treee30718db77b8e6bb8e57a82500fb20e4f35bb43a /lib/python/Screens
parent0abd3c974bc5f2c79948972a3f10f6c968e42016 (diff)
parent6bb47ff06e84149578671195a702e22ada245d37 (diff)
downloadenigma2-a568c76b75e987a33d2f7a65aa483447cf55e442.tar.gz
enigma2-a568c76b75e987a33d2f7a65aa483447cf55e442.zip
Merge branch 'master' of /home/tmbinc/enigma2-git
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]