remove possibility to scan with "loopthrough" and "2nd cable from rotor" configured...
[enigma2.git] / lib / python / Screens / ScanSetup.py
index 464c701a61e2024b8787b8eba664be2e9dfc5b9b..f32904a16ec27ca471a9e63080375a07e6a499e1 100644 (file)
@@ -524,7 +524,7 @@ class ScanSetup(ConfigListScreen, Screen, CableTransponderSearchSupport):
                        nim_list = []
                        # collect all nims which are *not* set to "nothing"
                        for n in nimmanager.nim_slots:
-                               if n.config_mode != "nothing":
+                               if not n.config_mode in ("loopthrough", "satposdepends", "nothing"):
                                        nim_list.append((str(n.slot), n.friendly_full_description))
 
                        self.scan_nims = ConfigSelection(choices = nim_list)