fix non working ignore of markers when multiple bouquets is disabled
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>
Sat, 21 Apr 2007 12:22:23 +0000 (12:22 +0000)
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>
Sat, 21 Apr 2007 12:22:23 +0000 (12:22 +0000)
lib/python/Screens/ChannelSelection.py

index 26ca436102c542b754f4338393051ed5ad85f594..c9a0eeede4eee70f0a6551b53a2a2dd4188fe86b 100644 (file)
@@ -910,7 +910,9 @@ class ChannelSelectionBase(Screen):
                                self.enterPath(ref)
 
        def inBouquet(self):
-               return self.isBasePathEqual(self.bouquet_root)
+               if len(self.servicePath) > 0 and self.servicePath[0] == self.bouquet_root:
+                       return True
+               return False
 
        def atBegin(self):
                return self.servicelist.atBegin()