From 7e777467025af8ad77c21be4d018a2733e6649a7 Mon Sep 17 00:00:00 2001 From: acid-burn Date: Wed, 14 Oct 2009 20:43:13 +0200 Subject: [PATCH] Enigma2{skin_default.xml,SimpleSummary.py}: - Fix SimpleSummary, thx ritzMo --- data/skin_default.xml | 2 +- lib/python/Screens/SimpleSummary.py | 8 ++------ 2 files changed, 3 insertions(+), 7 deletions(-) mode change 100644 => 100755 lib/python/Screens/SimpleSummary.py diff --git a/data/skin_default.xml b/data/skin_default.xml index 6efa969..72dc357 100755 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -1102,7 +1102,7 @@ self.instance.move(ePoint(orgpos.x() + (orgwidth - newwidth)/2, orgpos.y())) - + 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) -- 2.7.4