fix fixing fix
[enigma2.git] / lib / python / Screens / StartWizard.py
index 7a374543b41996fc69b606e1d962afa158782f1b..63f2643826d61affad2b9cfd6a1188e1cfc8421f 100644 (file)
@@ -1,7 +1,7 @@
 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
 
@@ -12,7 +12,7 @@ class StartWizard(Wizard):
                <screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder" >
                        <widget name="text" position="153,50" size="340,270" font="Regular;23" />
                        <widget name="list" position="50,300" zPosition="1" size="440,200" />
-                       <widget name="config" position="50,300" zPosition="1" size="440,200" transparent="1" />                 
+                       <widget name="config" position="50,300" zPosition="1" size="440,200" transparent="1" scrollbarMode="showOnDemand" />                    
                        <widget name="stepslider" position="50,500" zPosition="1" borderWidth="2" size="440,20" backgroundColor="dark" />
                        <widget name="wizard" pixmap="/usr/share/enigma2/wizard.png" position="40,50" zPosition="10" size="110,174" transparent="1" alphatest="on"/>
                        <widget name="rc" pixmap="/usr/share/enigma2/rc.png" position="500,600" zPosition="10" size="154,475" transparent="1" alphatest="on"/>
@@ -35,6 +35,7 @@ class StartWizard(Wizard):
        def markDone(self):
                config.misc.firstrun.value = 0;
                config.misc.firstrun.save()
+               configfile.save()
                
 wizardManager.registerWizard(LanguageSelection, config.misc.firstrun.value)
 wizardManager.registerWizard(StartWizard, config.misc.firstrun.value)