aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/Sources/CurrentService.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-06-26 21:10:10 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-06-26 21:10:10 +0000
commit77bb53beb46f6984e1529c4f703523c146956d0f (patch)
tree5f6d1c9e9be93e3fe9e9f9d3ac8f896434d7d2c7 /lib/python/Components/Sources/CurrentService.py
parentd279cc40f4a1d927ad00bfe7b0ee3a303e9aed44 (diff)
downloadenigma2-77bb53beb46f6984e1529c4f703523c146956d0f.tar.gz
enigma2-77bb53beb46f6984e1529c4f703523c146956d0f.zip
add Boolean source, add ServiceInfo boolean sources, add ConditionalShowHide converter, add FixedLabel and Pixmap renderer
Diffstat (limited to 'lib/python/Components/Sources/CurrentService.py')
-rw-r--r--lib/python/Components/Sources/CurrentService.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/python/Components/Sources/CurrentService.py b/lib/python/Components/Sources/CurrentService.py
index bec6d2dc..2bd493e7 100644
--- a/lib/python/Components/Sources/CurrentService.py
+++ b/lib/python/Components/Sources/CurrentService.py
@@ -8,15 +8,15 @@ class CurrentService(PerServiceBase, Source):
PerServiceBase.__init__(self, navcore,
{
iPlayableService.evStart: self.changed,
- iPlayableService.evEnd: self.changed
+ iPlayableService.evEnd: self.changed,
+ # FIXME: we should check 'interesting_events'
+ # which is not always provided.
+ iPlayableService.evUpdatedInfo: self.changed,
+ iPlayableService.evUpdatedEventInfo: self.changed
})
self.navcore = navcore
def getCurrentService(self):
- service = self.navcore.getCurrentService()
- return service
-
- def stopEvent(self):
- self.changed()
+ return self.navcore.getCurrentService()
service = property(getCurrentService)