From: Felix Domke Date: Fri, 18 May 2007 15:02:15 +0000 (+0000) Subject: fix startwizzard for nim changes X-Git-Tag: 2.6.0~2242 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/e5d5efded2cdbc62105ed3742ac3396602e1d564?ds=sidebyside fix startwizzard for nim changes --- diff --git a/data/startwizard.xml b/data/startwizard.xml index de041193..402eeef9 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 = 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 = not nimmanager.nim_slots[1].empty @@ -66,9 +66,9 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.getNimType(2) != nimmanager.nimType["empty/unknown"] +self.condition = not nimmanager.nim_slots[2].empty - + self["rc"].moveTo(500, 50, 1) @@ -84,9 +84,9 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.getNimType(3) != nimmanager.nimType["empty/unknown"] +self.condition = not nimmanager.nim_slots[3].empty - + self["rc"].moveTo(500, 50, 1)