From: Stefan Pluecken Date: Wed, 30 Nov 2005 00:59:42 +0000 (+0000) Subject: fix again X-Git-Tag: 2.6.0~4866 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/8ed2bf5de4cf361b65bd1b7426221cf1a7339b27 fix again --- diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index ce906c26..565655f9 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -402,7 +402,8 @@ class SimpleChannelSelection(ChannelSelectionBase): class ChannelActionMap(NumberActionMap): def action(self, contexts, action): - NumberActionMap.action(self, contexts, action) + if not self.csel.enterBouquet(action): + NumberActionMap.action(self, contexts, action) self["actions"] = ChannelActionMap(["ChannelSelectActions", "OkCancelActions", "ContextMenuActions"], { "cancel": self.cancel,