remove possibility to scan with "loopthrough" and "2nd cable from rotor" configured...
authorghost <andreas.monzner@multimedia-labs.de>
Thu, 18 Dec 2008 16:50:23 +0000 (17:50 +0100)
committerghost <andreas.monzner@multimedia-labs.de>
Thu, 18 Dec 2008 16:52:26 +0000 (17:52 +0100)
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)