aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ChannelSelection.py
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-04-21 12:22:23 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2007-04-21 12:22:23 +0000
commit17796962c6e917a4f1e30110a87aba64dc14039a (patch)
treeac4216535adecb39e0042e8e937dea16ec83828b /lib/python/Screens/ChannelSelection.py
parente9974b3f0331118c25e984821fbc55bdbdebec86 (diff)
downloadenigma2-17796962c6e917a4f1e30110a87aba64dc14039a.tar.gz
enigma2-17796962c6e917a4f1e30110a87aba64dc14039a.zip
fix non working ignore of markers when multiple bouquets is disabled
Diffstat (limited to 'lib/python/Screens/ChannelSelection.py')
-rw-r--r--lib/python/Screens/ChannelSelection.py4
1 files changed, 3 insertions, 1 deletions
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()