X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/0387d7961b2eeb0f1bfa9f6ee9b7fa965dd0e66d..a63fc630b49788a73c4c39d46fb92c242c6163e0:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index 50140a99..5f76f16f 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -18,8 +18,13 @@ class SimpleSummary(Screen): names = [names] 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) + self["Title"] = Label(parent.title or "") def setTitle(self, title): self["Title"].setText(title)