X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FSimpleSummary.py;h=992e343c31599c9456cd5ba4341a6cf5faa796eb;hp=41875641aa1813602801c1b43b2a791044cc1aac;hb=7e777467025af8ad77c21be4d018a2733e6649a7;hpb=cccb35a4aeef1ba919411b35553902c86f57b856 diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py old mode 100644 new mode 100755 index 4187564..992e343 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -7,10 +7,10 @@ class SimpleSummary(Screen): WithSeconds - + """ def __init__(self, session, parent): - from Components.Label import Label + Screen.__init__(self, session, parent = parent) names = parent.skinName @@ -23,7 +23,3 @@ class SimpleSummary(Screen): # 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): - self["Title"].setText(title)