From: Andreas Monzner Date: Sat, 21 Apr 2007 12:22:23 +0000 (+0000) Subject: fix non working ignore of markers when multiple bouquets is disabled X-Git-Tag: 2.6.0~2278 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/17796962c6e917a4f1e30110a87aba64dc14039a?hp=e9974b3f0331118c25e984821fbc55bdbdebec86 fix non working ignore of markers when multiple bouquets is disabled --- diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 26ca4361..c9a0eeed 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -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()