"type" -> "tuner_type"... tuner_type is one of "DVB-S" "DVB-T" "DVB-C"
[enigma2.git] / lib / python / Components / EpgList.py
index 30f566fdb45093d73da2afcbf594be8d379ffa4b..8a7c8d45e9f472b6aab88663fc8839279f3e71bb 100644 (file)
@@ -284,6 +284,12 @@ class EPGList(HTMLComponent, GUIComponent):
                x = self.l.getCurrentSelection()
                return x and x[1]
 
+       def moveToService(self,serviceref):
+               for x in range(len(self.list)):
+                       if self.list[x][1] == serviceref.toString():
+                               self.instance.moveSelectionTo(x)
+                               break
+                       
        def moveToEventId(self, eventId):
                index = 0
                for x in self.list: