X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a27631694342ad6f77090743b5affddef5e155e0..44f52e5a73ba45c4a2ba31a91db4239de91ec60a:/data/startwizard.xml diff --git a/data/startwizard.xml b/data/startwizard.xml index eb16c263..368b301e 100644 --- a/data/startwizard.xml +++ b/data/startwizard.xml @@ -30,7 +30,7 @@ self["rc"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.getNimType(0) != nimmanager.nimType["empty/unknown"] +self.condition = len(nimmanager.nim_slots) > 0 and not nimmanager.nim_slots[0].empty @@ -48,7 +48,7 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.getNimType(1) != nimmanager.nimType["empty/unknown"] +self.condition = len(nimmanager.nim_slots) > 1 and not nimmanager.nim_slots[1].empty @@ -66,10 +66,10 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.getNimType(2) != nimmanager.nimType["empty/unknown"] +self.condition = len(nimmanager.nim_slots) > 2 and not nimmanager.nim_slots[2].empty - - + + self["rc"].moveTo(500, 50, 1) self["rc"].startMoving() @@ -84,10 +84,10 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.getNimType(3) != nimmanager.nimType["empty/unknown"] +self.condition = len(nimmanager.nim_slots) > 3 and not nimmanager.nim_slots[3].empty - - + + self["rc"].moveTo(500, 50, 1) self["rc"].startMoving() @@ -131,13 +131,13 @@ 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 +152,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"))