flush config (to flash) after leave wizard
[enigma2.git] / lib / python / Screens / StartWizard.py
index 81856ceb371bbf7648abe3732e1ed7bc612b7ed2..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
 
@@ -9,10 +9,10 @@ config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1);
 
 class StartWizard(Wizard):
        skin = """
-               <screen position="0,0" size="720,560" title="Welcome..." flags="wfNoBorder" >
-                       <widget name="text" position="153,50" size="340,270" font="Arial;23" />
+               <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)