From d9f8654bba059483d67024a64e30fe39b6ae3551 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Tue, 8 Jan 2008 14:52:33 +0000 Subject: [PATCH] allow generic override of SimpleSummary --- lib/python/Screens/SimpleSummary.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/python/Screens/SimpleSummary.py b/lib/python/Screens/SimpleSummary.py index 50140a9..22fd83e 100644 --- a/lib/python/Screens/SimpleSummary.py +++ b/lib/python/Screens/SimpleSummary.py @@ -18,8 +18,10 @@ class SimpleSummary(Screen): names = [names] self.skinName = [ x + "_summary" for x in names ] + self.skinName.append("SimpleSummary") + 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) -- 2.7.4