diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-09 11:36:10 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-09 11:36:10 +0000 |
| commit | fc11878a40ccc81423a8f223942b89597f2fffb6 (patch) | |
| tree | 499e620f0e126dca12083194869b28d1bec77cd4 | |
| parent | 80416e87ef6cecd542830647aa6b111364601eaf (diff) | |
| download | enigma2-fc11878a40ccc81423a8f223942b89597f2fffb6.tar.gz enigma2-fc11878a40ccc81423a8f223942b89597f2fffb6.zip | |
some fixes and improvements for the start-wizard
| -rw-r--r-- | data/startwizard.xml | 4 | ||||
| -rw-r--r-- | lib/python/Screens/Wizard.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/data/startwizard.xml b/data/startwizard.xml index 501fbf61..89352abd 100644 --- a/data/startwizard.xml +++ b/data/startwizard.xml @@ -9,7 +9,7 @@ self["rc"].startMoving() </code> </step> <step number="2"> - <text value="Bla" /> + <text value="Use the up/down keys on your remote control to select an option. After that, press OK." /> <list> <listentry caption="Use wizard to set up basic features" step="next" /> <listentry caption="Exit wizard" step="end" /> @@ -53,7 +53,7 @@ self["arrowdown"].startMoving() </list> </step> <step number="6"> - <text value="Bla" /> + <text value="What do you want to scan?" /> <config screen="ScanSimple" module="ScanSetup" /> <code> self["arrowup"].moveTo(740, 355, 10) diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index 055bdf27..7687f44d 100644 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -24,8 +24,8 @@ class WelcomeWizard(Screen, HelpableScreen): <widget name="step" position="50,50" size="440,25" font="Arial;23" /> <widget name="stepslider" position="50,500" zPosition="1" size="440,20" backgroundColor="dark" /> <widget name="rc" pixmap="/usr/share/enigma2/rc.png" position="500,600" zPosition="10" size="154,475" transparent="1" alphatest="on"/> - <widget name="arrowdown" pixmap="/usr/share/enigma2/arrowdown.png" position="0,0" zPosition="10" size="37,70" transparent="1" alphatest="on"/> - <widget name="arrowup" pixmap="/usr/share/enigma2/arrowup.png" position="-100,-100" zPosition="10" size="37,70" transparent="1" alphatest="on"/> + <widget name="arrowdown" pixmap="/usr/share/enigma2/arrowdown.png" position="0,0" zPosition="11" size="37,70" transparent="1" alphatest="on"/> + <widget name="arrowup" pixmap="/usr/share/enigma2/arrowup.png" position="-100,-100" zPosition="11" size="37,70" transparent="1" alphatest="on"/> </screen>""" class parseWizard(ContentHandler): |
