X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/d9f8654bba059483d67024a64e30fe39b6ae3551..2c22c1f1eab171b4a760365e501ee6313075e993:/lib/python/Screens/SimpleSummary.py diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index 22fd83e0..41875641 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -1,5 +1,5 @@ from Screens.Screen import Screen -from Components.Sources.Source import ObsoleteSource +#from Components.Sources.Source import ObsoleteSource class SimpleSummary(Screen): skin = """ @@ -20,7 +20,9 @@ class SimpleSummary(Screen): self.skinName = [ x + "_summary" for x in names ] self.skinName.append("SimpleSummary") - self["Clock"] = ObsoleteSource(new_source = "global.CurrentTime", removal_date = "2008-01") + # if parent has a "skin_summary" defined, use that as default + self.skin = parent.__dict__.get("skin_summary", self.skin) + self["Title"] = Label(parent.title or "") def setTitle(self, title):