aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-06 18:32:06 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-01-06 18:32:06 +0000
commit3c79adcf97b4c2c84ede4212b6ede42c5987db83 (patch)
treeaa425d3e9064004ee71f37ccb4fbf358835eb677 /lib/python/Screens
parentbb438bec17665a907c28ca47d665766c7b26be79 (diff)
downloadenigma2-3c79adcf97b4c2c84ede4212b6ede42c5987db83.tar.gz
enigma2-3c79adcf97b4c2c84ede4212b6ede42c5987db83.zip
show servicename and clock in radio player
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/ChannelSelection.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/python/Screens/ChannelSelection.py b/lib/python/Screens/ChannelSelection.py
index e9eb8605..d4a1e7ce 100644
--- a/lib/python/Screens/ChannelSelection.py
+++ b/lib/python/Screens/ChannelSelection.py
@@ -8,6 +8,8 @@ from Components.config import config, configElement, ConfigSubsection, configTex
from Screens.FixedMenu import FixedMenu
from Tools.NumericalTextInput import NumericalTextInput
from Components.NimManager import nimmanager
+from Components.ServiceName import ServiceName
+from Components.Clock import Clock
from Components.EventInfo import EventInfo
import xml.dom.minidom
@@ -546,6 +548,8 @@ class ChannelSelection(ChannelSelectionBase, ChannelSelectionEdit):
class ServiceInfoWindow(Screen):
def __init__(self, session):
Screen.__init__(self, session)
+ self["Service_Name"] = ServiceName(self.session.nav)
+ self["Clock"] = Clock()
self["Event_Now_StartTime"] = EventInfo(self.session.nav, EventInfo.Now_StartTime)
self["Event_Next_StartTime"] = EventInfo(self.session.nav, EventInfo.Next_StartTime)
self["Event_Now"] = EventInfo(self.session.nav, EventInfo.Now)