X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FStartWizard.py;h=8fc4ecdfddddb790521e0fe4ef103067d9a85de9;hp=efff0c909cde7b776cc91cc763a3c711cf3aac35;hb=08fca93e7f2a37a452399d08c5c84b969b7e52af;hpb=9e70688bb0017399b7e7ef0d81182c81b4b7fcb3 diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index efff0c9..8fc4ecd 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -1,11 +1,12 @@ from Wizard import Wizard, wizardManager from Components.Pixmap import * -from Components.config import configElementBoolean, config +from Components.config import configElementBoolean, config, configfile from LanguageSelection import LanguageSelection config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1); +config.misc.languageselected = configElementBoolean("config.misc.languageselected", 1); class StartWizard(Wizard): skin = """ @@ -14,11 +15,11 @@ class StartWizard(Wizard): - - - - - + + + + + """ def __init__(self, session): @@ -33,8 +34,9 @@ class StartWizard(Wizard): self["arrowup2"] = MovingPixmap() def markDone(self): - config.misc.firstrun.value = 0; + config.misc.firstrun.value = 0 config.misc.firstrun.save() + configfile.save() -wizardManager.registerWizard(LanguageSelection, config.misc.firstrun.value) +wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value) wizardManager.registerWizard(StartWizard, config.misc.firstrun.value)