aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-01-08 14:52:33 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-01-08 14:52:33 +0000
commitd9f8654bba059483d67024a64e30fe39b6ae3551 (patch)
tree7786bd08536f66a4d340c57419ca41004c58f90f /lib/python
parente21f1d8fb1bc528bf05adbb827295bd5dbf3ebc9 (diff)
downloadenigma2-d9f8654bba059483d67024a64e30fe39b6ae3551.tar.gz
enigma2-d9f8654bba059483d67024a64e30fe39b6ae3551.zip
allow generic override of SimpleSummary
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/SimpleSummary.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py
index 50140a99..22fd83e0 100644
--- a/lib/python/Screens/SimpleSummary.py
+++ b/lib/python/Screens/SimpleSummary.py
@@ -18,8 +18,10 @@ class SimpleSummary(Screen):
names = [names]
self.skinName = [ x + "_summary" for x in names ]
+ self.skinName.append("SimpleSummary")
+
self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01")
- self["Title"] = Label(parent.title)
+ self["Title"] = Label(parent.title or "")
def setTitle(self, title):
self["Title"].setText(title)