aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ScanSetup.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-06-02 11:50:49 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-06-02 11:50:49 +0000
commitad1e20175ad282a750315eb17861258668dfb2c9 (patch)
tree3b2448e94baa825eecfcf8d155f35a698302e95e /lib/python/Screens/ScanSetup.py
parentf85dc43e7746bed7b30584f784ebaa5e0444805f (diff)
downloadenigma2-ad1e20175ad282a750315eb17861258668dfb2c9.tar.gz
enigma2-ad1e20175ad282a750315eb17861258668dfb2c9.zip
move installPackage call one wizard step to properly update the wizard texts
Diffstat (limited to 'lib/python/Screens/ScanSetup.py')
-rw-r--r--lib/python/Screens/ScanSetup.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py
index 92d82073..357888f8 100644
--- a/lib/python/Screens/ScanSetup.py
+++ b/lib/python/Screens/ScanSetup.py
@@ -285,7 +285,15 @@ class DefaultSatLists(DefaultWizard):
def setDirectory(self):
self.directory = resolveFilename(SCOPE_DEFAULTPARTITIONMOUNTDIR)
- self.xmlfile = "defaultsatlists.xml"
+ self.xmlfile = "defaultsatlists.xml"
+
+ def statusCallback(self, status, progress):
+ print "statusCallback:", status, progress
+ from Components.DreamInfoHandler import DreamInfoHandler
+ if status == DreamInfoHandler.STATUS_DONE:
+ self["text"].setText(_("The installation of the default services lists is finished."))
+ self.markDone()
+ self.disableKeys = False
class ScanSetup(ConfigListScreen, Screen, CableTransponderSearchSupport):
def __init__(self, session):