diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-02-11 14:12:52 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-02-11 14:12:52 +0000 |
| commit | 5bc8209d19e1d41f289cfe198e4e3a839adf894b (patch) | |
| tree | 34a7906db00712fd20837887212223f50236979b /lib/python/Screens/StartWizard.py | |
| parent | b6748e04393c47c18453c2d2fda88e315aa9d55d (diff) | |
| download | enigma2-5bc8209d19e1d41f289cfe198e4e3a839adf894b.tar.gz enigma2-5bc8209d19e1d41f289cfe198e4e3a839adf894b.zip | |
add a 'priority' for wizard screens to define the run order
Diffstat (limited to 'lib/python/Screens/StartWizard.py')
| -rw-r--r-- | lib/python/Screens/StartWizard.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index 0424771a..a60e3d2a 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -41,7 +41,6 @@ class StartWizard(Wizard): config.misc.firstrun.save() configfile.save() -wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value) +wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value, priority = 5) #wizardManager.registerWizard(DefaultWizard, config.misc.defaultchosen.value) -wizardManager.registerWizard(StartWizard, config.misc.firstrun.value) - +wizardManager.registerWizard(StartWizard, config.misc.firstrun.value, priority = 20) |
