From: Stefan Pluecken Date: Tue, 22 Nov 2005 13:09:38 +0000 (+0000) Subject: override doContext and channelSelected in SimpleChannelSelection X-Git-Tag: 2.6.0~5010 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/1d434656236b098f062f174dee390e8d34435d4c?ds=sidebyside override doContext and channelSelected in SimpleChannelSelection --- diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py index 890fd3e0..1c1e4503 100644 --- a/lib/python/Screens/ChannelSelection.py +++ b/lib/python/Screens/ChannelSelection.py @@ -380,4 +380,10 @@ class SimpleChannelSelection(ChannelSelection): ChannelSelection.__init__(self, session) self.args = args + def channelSelected(self): # just return selected service + ref = self.servicelist.getCurrent() + self.close(ref) + + def doContext(self): # don't show context menu + pass \ No newline at end of file