From e5d5efded2cdbc62105ed3742ac3396602e1d564 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Fri, 18 May 2007 15:02:15 +0000 Subject: [PATCH] fix startwizzard for nim changes --- data/startwizard.xml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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) -- 2.30.2