diff options
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/SimpleSummary.py | 3 |
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 "") |
