diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-23 20:12:12 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2008-07-23 20:12:12 +0000 |
| commit | 60c335d6a15c3c6e417833bac39273bae4fc89f7 (patch) | |
| tree | fc89ecfd28573d4b440f3fe1ac3c8d797390621b /lib/python/Screens/StartWizard.py | |
| parent | 64ed51be43cd9fde5167a12081d112cf3d2a2a85 (diff) | |
| download | enigma2-60c335d6a15c3c6e417833bac39273bae4fc89f7.tar.gz enigma2-60c335d6a15c3c6e417833bac39273bae4fc89f7.zip | |
add LanguageWizard to adapt to the wizard design of the start wizard
Diffstat (limited to 'lib/python/Screens/StartWizard.py')
| -rw-r--r-- | lib/python/Screens/StartWizard.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index ae806ab6..aab81f63 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -7,7 +7,7 @@ from Screens.Rc import Rc from Components.Pixmap import Pixmap, MovingPixmap, MultiPixmap from Components.config import config, ConfigBoolean, configfile, ConfigSubsection -from LanguageSelection import LanguageSelection +from LanguageSelection import LanguageWizard config.misc.firstrun = ConfigBoolean(default = True) config.misc.startwizard = ConfigSubsection() @@ -28,5 +28,5 @@ class StartWizard(DefaultSatLists, Rc): config.misc.firstrun.save() configfile.save() -wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value, priority = 5) +wizardManager.registerWizard(LanguageWizard, config.misc.languageselected.value, priority = 5) wizardManager.registerWizard(StartWizard, config.misc.firstrun.value, priority = 20) |
