take care of scrollbar size when build movielist and timerlist entries
[enigma2.git] / lib / python / Screens / ImageWizard.py
index f96ddadc37b26c47b151fa8d469512dd1ef77cf1..148eba52ba85b89f7d162109b266feee5ef3dc3f 100644 (file)
@@ -1,9 +1,5 @@
 from Wizard import Wizard, wizardManager
 
-from Components.config import configElementBoolean, config
-from Components.Pixmap import *
-
-from LanguageSelection import LanguageSelection
 from Tools.Directories import fileExists
 
 import os
@@ -25,7 +21,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 +40,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