aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ScanSetup.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-19 00:12:13 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-19 00:12:13 +0000
commit5763b994b39952bc06a75e634b4418f13b0aeaf2 (patch)
tree17b26666565ddabde45a2867463795f1fd253a7f /lib/python/Screens/ScanSetup.py
parent3da80fb995746d6be853bfedf749d6e6c872b5e6 (diff)
downloadenigma2-5763b994b39952bc06a75e634b4418f13b0aeaf2.tar.gz
enigma2-5763b994b39952bc06a75e634b4418f13b0aeaf2.zip
fix bluescreen when wizard ends
dont ask to scan 2nd NIM when both nims have the same satellites configured
Diffstat (limited to 'lib/python/Screens/ScanSetup.py')
-rw-r--r--lib/python/Screens/ScanSetup.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/python/Screens/ScanSetup.py b/lib/python/Screens/ScanSetup.py
index b2a53ab0..2dbbca27 100644
--- a/lib/python/Screens/ScanSetup.py
+++ b/lib/python/Screens/ScanSetup.py
@@ -542,9 +542,13 @@ class ScanSimple(Screen):
sec = eDVBSatelliteEquipmentControl.getInstance()
if sec is not None:
exclusive_satellites = sec.get_exclusive_satellites(0,1)
- if len(exclusive_satellites) == 0:
+ if len(exclusive_satellites) == 2:
return False
- return True
+ idx = exclusive_satellites[0]+1
+ exclusive_nim_sats = exclusive_satellites[idx+1:idx+1+exclusive_satellites[idx]]
+ if len(exclusive_nim_sats):
+ return True
+ return False # two -C or two -T tuners
def __init__(self, session):
Screen.__init__(self, session)