aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 13:09:38 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 13:09:38 +0000
commit1d434656236b098f062f174dee390e8d34435d4c (patch)
tree179cc0f6105f8d5e594912a5c66eabc1589c5c18 /lib/python
parent3a84ca5e09502322c37bf9240006014f8b631b58 (diff)
downloadenigma2-1d434656236b098f062f174dee390e8d34435d4c.tar.gz
enigma2-1d434656236b098f062f174dee390e8d34435d4c.zip
override doContext and channelSelected in SimpleChannelSelection
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/ChannelSelection.py6
1 files changed, 6 insertions, 0 deletions
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