X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FStartWizard.py;h=8fc4ecdfddddb790521e0fe4ef103067d9a85de9;hp=63f2643826d61affad2b9cfd6a1188e1cfc8421f;hb=08fca93e7f2a37a452399d08c5c84b969b7e52af;hpb=4f0f833a718faadbdd3aaa1f19968efce8ecb624 diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index 63f2643..8fc4ecd 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -6,6 +6,7 @@ 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,9 +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)