From: Stefan Pluecken Date: Thu, 29 Jun 2006 17:24:04 +0000 (+0000) Subject: don't display tuner setup for empty tuner slots X-Git-Tag: 2.6.0~3237 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/880c452e2eb1ae0f0c1543e5937b79a7d75be15d don't display tuner setup for empty tuner slots --- diff --git a/data/startwizard.xml b/data/startwizard.xml index 54533ebe..9dbf030d 100644 --- a/data/startwizard.xml +++ b/data/startwizard.xml @@ -30,7 +30,7 @@ self["rc"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.nimCount > 0 +self.condition = nimmanager.getNimType(0) != nimmanager.nimType["empty/unknown"] @@ -48,7 +48,7 @@ self["arrowdown"].startMoving() from Components.NimManager import nimmanager -self.condition = nimmanager.nimCount > 1 +self.condition = nimmanager.getNimType(1) != nimmanager.nimType["empty/unknown"]