X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5bc8209d19e1d41f289cfe198e4e3a839adf894b..679475dbb4c18821055c9b9d632f689aaa9f3516:/lib/python/Screens/StartWizard.py diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index a60e3d2a..7f64624e 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -1,4 +1,5 @@ -from Wizard import Wizard, wizardManager +from Wizard import wizardManager +from Screens.WizardLanguage import WizardLanguage from Components.Pixmap import Pixmap, MovingPixmap from Components.config import config, ConfigBoolean, configfile @@ -9,27 +10,10 @@ from LanguageSelection import LanguageSelection config.misc.firstrun = ConfigBoolean(default = True) config.misc.languageselected = ConfigBoolean(default = True) -class StartWizard(Wizard): - skin = """ - - - - - - - - - - - - - """ - +class StartWizard(WizardLanguage): def __init__(self, session): - self.skin = StartWizard.skin self.xmlfile = "startwizard.xml" - - Wizard.__init__(self, session, showSteps = False) + WizardLanguage.__init__(self, session, showSteps = False) self["wizard"] = Pixmap() self["rc"] = MovingPixmap() self["arrowdown"] = MovingPixmap()