X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/6eeefece35e4269e02fdb7abab4f79d8e7b8f98b..0cf3bc28d59e7bfb8519839a8e9c36a87ea382c8:/lib/python/Screens/TutorialWizard.py diff --git a/lib/python/Screens/TutorialWizard.py b/lib/python/Screens/TutorialWizard.py index bab07f20..1c0c4108 100644 --- a/lib/python/Screens/TutorialWizard.py +++ b/lib/python/Screens/TutorialWizard.py @@ -1,27 +1,13 @@ from Wizard import Wizard, wizardManager from Components.config import ConfigBoolean, config -from Components.Pixmap import * - -from LanguageSelection import LanguageSelection +from Components.Pixmap import MovingPixmap config.misc.firstruntutorial = ConfigBoolean(default = True) class TutorialWizard(Wizard): - skin = """ - - - - - - - - """ - def __init__(self, session): - self.skin = TutorialWizard.skin self.xmlfile = "tutorialwizard.xml" - Wizard.__init__(self, session, showSteps=False, showStepSlider=False, showList=True, showConfig=False) self["rc"] = MovingPixmap() self["arrowdown"] = MovingPixmap() @@ -32,4 +18,4 @@ class TutorialWizard(Wizard): config.misc.firstruntutorial.value = False config.misc.firstruntutorial.save() -#wizardManager.registerWizard(TutorialWizard, config.misc.firstruntutorial.value) +#wizardManager.registerWizard(TutorialWizard, config.misc.firstruntutorial.value, priority = 30)