From 7d30259cc4f44f65507366600e6238a5decd275f Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Fri, 25 Jan 2008 01:07:29 +0000 Subject: [PATCH] change StartWizard's skin to sources concept for list widgets --- lib/python/Screens/StartWizard.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index 1734d73..0424771 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -4,6 +4,7 @@ from Components.Pixmap import Pixmap, MovingPixmap from Components.config import config, ConfigBoolean, configfile from LanguageSelection import LanguageSelection +#from DefaultWizard import DefaultWizard config.misc.firstrun = ConfigBoolean(default = True) config.misc.languageselected = ConfigBoolean(default = True) @@ -12,7 +13,9 @@ class StartWizard(Wizard): skin = """ - + + + @@ -39,4 +42,6 @@ class StartWizard(Wizard): configfile.save() wizardManager.registerWizard(LanguageSelection, config.misc.languageselected.value) +#wizardManager.registerWizard(DefaultWizard, config.misc.defaultchosen.value) wizardManager.registerWizard(StartWizard, config.misc.firstrun.value) + -- 2.7.4