aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Wizard.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-10-07 09:00:00 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-10-07 09:00:00 +0000
commit79da420aa414522f8b5477053f0b46e6311f1cc1 (patch)
treeaa4f46dafea1fe074a3384579e308f85aeddc4b8 /lib/python/Screens/Wizard.py
parent87372cbc59371c6d8b8e5dc4f77d1c84fef3423e (diff)
downloadenigma2-79da420aa414522f8b5477053f0b46e6311f1cc1.tar.gz
enigma2-79da420aa414522f8b5477053f0b46e6311f1cc1.zip
Wizard shouldn't be a subclass of HelpableScreen since there is no help
available (prevents crash) pressing help while in videowizard could also lead to invisible GUI so each wizard should implement help for itself to fit its specific needs
Diffstat (limited to 'lib/python/Screens/Wizard.py')
-rw-r--r--lib/python/Screens/Wizard.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py
index ab1f188b..dfb28e24 100644
--- a/lib/python/Screens/Wizard.py
+++ b/lib/python/Screens/Wizard.py
@@ -45,7 +45,7 @@ class WizardSummary(Screen):
def setText(self, text):
self["text"].setText(text)
-class Wizard(Screen, HelpableScreen):
+class Wizard(Screen):
def createSummary(self):
print "WizardCreateSummary"
return WizardSummary
@@ -150,7 +150,6 @@ class Wizard(Screen, HelpableScreen):
def __init__(self, session, showSteps = True, showStepSlider = True, showList = True, showConfig = True):
Screen.__init__(self, session)
- HelpableScreen.__init__(self)
self.stepHistory = []