add disconnect to elements, and disconnect renderer from sources on screen close
[enigma2.git] / lib / python / Screens / ImageWizard.py
index f96ddadc37b26c47b151fa8d469512dd1ef77cf1..5617e8f183b88f070d3ac9cc1efb7cb2cba9c062 100644 (file)
@@ -25,7 +25,7 @@ else:
 class ImageWizard(Wizard):
        skin = """
                <screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder">
-                       <widget name="text" position="50,100" size="440,250" font="Regular;23" />
+                       <widget name="text" position="50,100" size="440,250" font="Regular;22" />
                        <widget name="list" position="50,350" zPosition="1" size="440,200" />
                        <widget name="config" position="50,350" zPosition="1" size="440,200" transparent="1" scrollbarMode="showOnDemand" />
                </screen>"""
@@ -44,7 +44,7 @@ def doBackup(path):
        os.system('tar cvpf ' + path + backupfile + ' /etc/enigma2')
 
 def doRestore(path):
-       os.system('cd / && tar xvpf ' + path + backupfile + ' etc/enigma2')
+       os.system('cd / && /bin/tar xvpf ' + path + backupfile)
        
 
                
\ No newline at end of file