don't crash when removing a marker from bouquet list
[enigma2.git] / data / tutorialwizard.xml
1 <wizard>
2                 <step number="1">
3                         <text value="Do you want to view a tutorial?" />
4                         <list>
5                                 <listentry caption="Yes, view the tutorial" step="next" />
6                                 <listentry caption="No, just start my dreambox" step="end" />
7                         </list>
8                 </step>
9
10                 <step number="2">
11                         <text value="By pressing the OK Button on your remote control, the info bar is being displayed." />
12                         <code>
13 from Screens.InfoBar import InfoBar
14 self.infobardialog = self.session.instantiateDialog(InfoBar)
15 self.infobardialog.hideTimer.stop()
16 self.infobardialog.show()
17                         </code>
18                         <code pos="after">
19 self.infobardialog.hide()
20 del self.infobardialog
21                         </code>
22
23                 </step>
24                 
25                 <step number="3">
26                         <text value="This is step number 2." />
27                 </step>
28 </wizard>