From: Stefan Pluecken Date: Wed, 4 Jan 2006 22:29:36 +0000 (+0000) Subject: leave channelselection with up/down key X-Git-Tag: 2.6.0~4522 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/2bc32a2aeb47f3df98e95d5f666126fbdc03cb26 leave channelselection with up/down key --- diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index adc68945..fa25fd54 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -419,6 +419,8 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit): self["actions"] = ChannelActionMap(["ChannelSelectActions", "OkCancelActions", "ContextMenuActions"], { "cancel": self.cancel, + "down": self.cancel, + "up": self.cancel, "ok": self.channelSelected, "mark": self.doMark, "contextMenu": self.doContext,