X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/19f9f1661f91c6dc6bdb480adf66db0ca1b74b5d..e7e86ba59b42992701e6750e707192ab215f5017:/data/startwizard.xml?ds=sidebyside diff --git a/data/startwizard.xml b/data/startwizard.xml index d3e0642e..3dedafc9 100644 --- a/data/startwizard.xml +++ b/data/startwizard.xml @@ -30,7 +30,7 @@ self["rc"].startMoving() from Components.NimManager import nimmanager -self.condition = len(nimmanager.nim_slots) > 0 and not nimmanager.nim_slots[0].empty +self.condition = len(nimmanager.nim_slots) > 0 and not nimmanager.nim_slots[0].empty and config.misc.startwizard.shownimconfig.value @@ -48,7 +48,7 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = len(nimmanager.nim_slots) > 1 and not nimmanager.nim_slots[1].empty +self.condition = len(nimmanager.nim_slots) > 1 and not nimmanager.nim_slots[1].empty and config.misc.startwizard.shownimconfig.value @@ -66,7 +66,7 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = len(nimmanager.nim_slots) > 2 and not nimmanager.nim_slots[2].empty +self.condition = len(nimmanager.nim_slots) > 2 and not nimmanager.nim_slots[2].empty and config.misc.startwizard.shownimconfig.value @@ -84,7 +84,7 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = len(nimmanager.nim_slots) > 3 and not nimmanager.nim_slots[3].empty +self.condition = len(nimmanager.nim_slots) > 3 and not nimmanager.nim_slots[3].empty and config.misc.startwizard.shownimconfig.value @@ -101,6 +101,9 @@ self["arrowdown"].startMoving() + +self.condition = config.misc.startwizard.doservicescan.value + self["rc"].moveTo(800, 50, 1) self["rc"].startMoving() @@ -112,18 +115,34 @@ self["arrowup2"].startMoving() + + +if self["list"].index == 2: + #from Screens.ScanSetup import ScanSetup + from Screens.ScanSetup import DefaultSatLists + self.session.open(DefaultSatLists) + + +self.condition = config.misc.startwizard.doservicescan.value + + +self.condition = config.misc.startwizard.doservicescan.value + + +self.condition = config.misc.startwizard.doservicescan.value + @@ -137,7 +156,7 @@ self["arrowup2"].startMoving() -if self["list"].getSelectedIndex() == 0: +if self["list"].index == 0: config.ParentalControl.configured.value = True else: config.ParentalControl.configured.value = False @@ -152,7 +171,7 @@ config.ParentalControl.configured.save() from ParentalControlSetup import ParentalControlChangePin -if self["list"].getSelectedIndex() == 0: +if self["list"].index == 0: self.session.open(ParentalControlChangePin, config.ParentalControl.servicepin[0], _("parental control pin"))