aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-02-19 01:56:43 +0100
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-02-19 01:56:43 +0100
commit9208ede8da1fd495eafc24b9dd2d75d84f8a5952 (patch)
tree91f3e36e982bedc8b6b268cdedc8129c63c93b82 /lib/python/Screens
parent44fd8be83300affa4321aded6f5734f3b6f2001b (diff)
downloadenigma2-9208ede8da1fd495eafc24b9dd2d75d84f8a5952.tar.gz
enigma2-9208ede8da1fd495eafc24b9dd2d75d84f8a5952.zip
- increase video wizard timeout from 10 to 20 seconds
- rearrange summary screen widgets - set summary screen before anything else in the wizard
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]