aboutsummaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-09-03 16:25:07 +0200
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-09-03 16:25:07 +0200
commita053f35db7edbd467bf01b9054d90dad3ce12803 (patch)
tree78ddec3a03a3fee8705660c8984c35651c81da39 /data
parent9ec0803d291b661b38b2ebf94810133826be6a79 (diff)
downloadenigma2-a053f35db7edbd467bf01b9054d90dad3ce12803.tar.gz
enigma2-a053f35db7edbd467bf01b9054d90dad3ce12803.zip
allow skipping of end screens in wizards
just add <condition> self.condition = self.isLastWizard </condition> to the last screen in your wizard furthermore you need to update the <step>-tag of your last step according to the following example: <step id="end" laststep="true"> ... </step>
Diffstat (limited to 'data')
-rw-r--r--data/startwizard.xml5
1 files changed, 4 insertions, 1 deletions
diff --git a/data/startwizard.xml b/data/startwizard.xml
index 8fcf8f41..c004a5e6 100644
--- a/data/startwizard.xml
+++ b/data/startwizard.xml
@@ -160,7 +160,10 @@ config.ParentalControl.setuppin.save()
<text value="After the start wizard is completed, you need to protect single services. Refer to your dreambox's manual on how to do that." />
</step>
- <step id="end">
+ <step id="end" laststep="true">
+ <condition>
+self.condition = self.isLastWizard
+ </condition>
<text value="Thank you for using the wizard. Your box is now ready to use.\nPlease press OK to start using your Dreambox." />
</step>
</wizard>