diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-09-08 12:43:12 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-09-08 12:43:12 +0200 |
| commit | b4785c62f2771c07d987e9a3e69bcfe4ce9c397f (patch) | |
| tree | 981ad9fb88380170d2bf244b4e524ee804776f8b /data | |
| parent | fb0f569733c71a83f0c73a518f8aead20af23513 (diff) | |
| parent | cfeea5d7bda036654206eefdb2ae96b03bd31969 (diff) | |
| download | enigma2-b4785c62f2771c07d987e9a3e69bcfe4ce9c397f.tar.gz enigma2-b4785c62f2771c07d987e9a3e69bcfe4ce9c397f.zip | |
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'data')
| -rw-r--r-- | data/startwizard.xml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/data/startwizard.xml b/data/startwizard.xml index c004a5e6..70a6e0dc 100644 --- a/data/startwizard.xml +++ b/data/startwizard.xml @@ -73,7 +73,8 @@ self.selectKey("RIGHT") <step id="satlistsquestion"> <text value="Do you want to install default sat lists?" /> <condition> -self.condition = config.misc.startwizard.doservicescan.value +from Components.NimManager import nimmanager +self.condition = config.misc.startwizard.doservicescan.value and nimmanager.somethingConnected() </condition> <code> self.hideRc() @@ -87,7 +88,8 @@ self.hideRc() <step id="scanquestion"> <text value="Do you want to do a service scan?" /> <condition> -self.condition = config.misc.startwizard.doservicescan.value +from Components.NimManager import nimmanager +self.condition = config.misc.startwizard.doservicescan.value and nimmanager.somethingConnected() </condition> <code> self.hideRc() @@ -100,21 +102,24 @@ self.hideRc() </step> <step id="scan" nextstep="finisheddefaultsatlists"> <condition> -self.condition = config.misc.startwizard.doservicescan.value +from Components.NimManager import nimmanager +self.condition = config.misc.startwizard.doservicescan.value and nimmanager.somethingConnected() </condition> <text value="What do you want to scan?" /> <config screen="ScanSimple" module="ScanSetup" type="ConfigList" /> </step> <step id="manualscan"> <condition> -self.condition = config.misc.startwizard.doservicescan.value +from Components.NimManager import nimmanager +self.condition = config.misc.startwizard.doservicescan.value and nimmanager.somethingConnected() </condition> <text value="What do you want to scan?" /> <config screen="ScanSetup" module="ScanSetup" type="ConfigList" /> </step> <step id="nextscan"> <condition> -self.condition = config.misc.startwizard.doservicescan.value +from Components.NimManager import nimmanager +self.condition = config.misc.startwizard.doservicescan.value and nimmanager.somethingConnected() </condition> <text value="Do you want to do another manual service scan?" /> <list> |
