aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/SimpleSummary.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-07-11 18:22:04 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-07-11 18:22:04 +0000
commit0b3d548fcc6f9033c428b7c8dee84ac12ad8dee6 (patch)
treeed0faf742ac4854d8ed1add485ada90eb59acccb /lib/python/Screens/SimpleSummary.py
parent47f334392faf39f274f5f74d9b86f1bfc2f29b51 (diff)
downloadenigma2-0b3d548fcc6f9033c428b7c8dee84ac12ad8dee6.tar.gz
enigma2-0b3d548fcc6f9033c428b7c8dee84ac12ad8dee6.zip
convert to new skin system
Diffstat (limited to 'lib/python/Screens/SimpleSummary.py')
-rw-r--r--lib/python/Screens/SimpleSummary.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py
index bb3e1e38..f4502a76 100644
--- a/lib/python/Screens/SimpleSummary.py
+++ b/lib/python/Screens/SimpleSummary.py
@@ -1,14 +1,16 @@
from Screens.Screen import Screen
+from Components.Sources.Clock import Clock
class SimpleSummary(Screen):
skin = """
<screen position="0,0" size="132,64">
- <widget name="Clock" position="50,46" size="82,18" font="Regular;16" />
+ <widget name="Clock" position="50,46" size="82,18" font="Regular;16">
+ <convert type="ClockToText">WithSeconds</convert>
+ </widget>
<widget name="Title" position="0,4" size="132,42" font="Regular;18" />
</screen>"""
def __init__(self, session, root_screen):
from Components.Label import Label
- from Components.Clock import Clock
Screen.__init__(self, session)
self["Clock"] = Clock()
self["Title"] = Label(root_screen.title)