diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-05-29 12:33:35 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-05-29 12:33:35 +0000 |
| commit | 51d5a73e196435b2f7d9de9e2d007c422293f071 (patch) | |
| tree | 03ca9c380df90b6dc2f0d2b1360a14ca48370e34 /lib/python/Screens | |
| parent | a5beb7286bff0260e74299fe16cbe1c86de90c76 (diff) | |
| download | enigma2-51d5a73e196435b2f7d9de9e2d007c422293f071.tar.gz enigma2-51d5a73e196435b2f7d9de9e2d007c422293f071.zip | |
fix for more than one CI
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/Ci.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Screens/Ci.py b/lib/python/Screens/Ci.py index 27ca5aa3..d23fb044 100644 --- a/lib/python/Screens/Ci.py +++ b/lib/python/Screens/Ci.py @@ -265,6 +265,7 @@ class CiSelection(Screen): for slot in range(MAX_NUM_CI): state = eDVBCI_UI.getInstance().getState(slot) + print "slot", slot, "state", state if state != -1: self.appendEntries(slot, state) CiHandler.registerCIMessageHandler(slot, self.ciStateChanged) @@ -308,7 +309,7 @@ class CiSelection(Screen): self.state[slot] = state slotidx=0 - while self.list[slotidx][2] != slot: + while self.list[slotidx][3] != slot: slotidx += 1 slotidx += 1 # do not change Reset |
