aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-01-25 00:39:40 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-01-25 00:39:40 +0000
commita63fc630b49788a73c4c39d46fb92c242c6163e0 (patch)
tree31f54189f6798049b1973875ad6a0dc699bb45a0 /lib/python
parent0abbe76c841a7cc624c30e946eec9e83e293bb4b (diff)
downloadenigma2-a63fc630b49788a73c4c39d46fb92c242c6163e0.tar.gz
enigma2-a63fc630b49788a73c4c39d46fb92c242c6163e0.zip
use screen.skin_summary if defined as summary skin
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/SimpleSummary.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py
index 22fd83e0..5f76f16f 100644
--- a/lib/python/Screens/SimpleSummary.py
+++ b/lib/python/Screens/SimpleSummary.py
@@ -20,6 +20,9 @@ class SimpleSummary(Screen):
self.skinName = [ x + "_summary" for x in names ]
self.skinName.append("SimpleSummary")
+ # if parent has a "skin_summary" defined, use that as default
+ self.skin = parent.__dict__.get("skin_summary", self.skin)
+
self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01")
self["Title"] = Label(parent.title or "")