aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/ChannelSelection.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/ChannelSelection.py')
-rw-r--r--lib/python/Screens/ChannelSelection.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index fa2f9da5..289d2e5b 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -47,11 +47,12 @@ class ChannelSelection(Screen):
self.close()
#called from infoBar
- def zapUp(self):
- self["list"].moveUp()
+ def zap(self):
self.session.nav.playService(self["list"].getCurrent())
- def zapDown(self):
+ def moveUp(self):
+ self["list"].moveUp()
+
+ def moveDown(self):
self["list"].moveDown()
- self.session.nav.playService(self["list"].getCurrent())