diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-04-21 12:22:23 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-04-21 12:22:23 +0000 |
| commit | 17796962c6e917a4f1e30110a87aba64dc14039a (patch) | |
| tree | ac4216535adecb39e0042e8e937dea16ec83828b /lib/python | |
| parent | e9974b3f0331118c25e984821fbc55bdbdebec86 (diff) | |
| download | enigma2-17796962c6e917a4f1e30110a87aba64dc14039a.tar.gz enigma2-17796962c6e917a4f1e30110a87aba64dc14039a.zip | |
fix non working ignore of markers when multiple bouquets is disabled
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/ChannelSelection.py | 4 |
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() |
