aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/TutorialWizard.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-17 17:34:16 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-17 17:34:16 +0000
commit1e1c01fece5a4a86a762af265e382da5dbb2d8cb (patch)
treefa245802ba7ee5937650049ca6bf339ac3fc68b1 /lib/python/Screens/TutorialWizard.py
parenta377b6ea97e78df6256d23fc128c17c680574d44 (diff)
downloadenigma2-1e1c01fece5a4a86a762af265e382da5dbb2d8cb.tar.gz
enigma2-1e1c01fece5a4a86a762af265e382da5dbb2d8cb.zip
add ability to remove list and config from a wizard
Diffstat (limited to 'lib/python/Screens/TutorialWizard.py')
-rw-r--r--lib/python/Screens/TutorialWizard.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/python/Screens/TutorialWizard.py b/lib/python/Screens/TutorialWizard.py
index 234047d0..2d30b012 100644
--- a/lib/python/Screens/TutorialWizard.py
+++ b/lib/python/Screens/TutorialWizard.py
@@ -12,8 +12,6 @@ class TutorialWizard(Wizard):
skin = """
<screen position="0,0" size="720,560" title="Welcome..." flags="wfNoBorder" >
<widget name="text" position="50,100" size="440,200" font="Arial;23" />
- <widget name="list" position="50,300" zPosition="1" size="440,200" />
- <widget name="config" position="50,300" zPosition="1" size="440,200" transparent="1" />
<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="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"/>
@@ -24,7 +22,7 @@ class TutorialWizard(Wizard):
self.skin = TutorialWizard.skin
self.xmlfile = "tutorialwizard.xml"
- Wizard.__init__(self, session, showSteps=False, showStepSlider=False)
+ Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=False, showConfig=False)
self["rc"] = MovingPixmap()
self["arrowdown"] = MovingPixmap()
self["arrowup"] = MovingPixmap()