From: Felix Domke Date: Fri, 6 Jun 2008 00:33:53 +0000 (+0000) Subject: ugly messagebox summary screen, choices is still missing X-Git-Tag: 2.6.0~1157 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/25e60bd7d5288cfbc6c5645bf7d4242cb82a8974 ugly messagebox summary screen, choices is still missing --- diff --git a/data/skin_default.xml b/data/skin_default.xml index df849720..aa6cc68f 100644 --- a/data/skin_default.xml +++ b/data/skin_default.xml @@ -476,6 +476,15 @@ newwidth = wsize[0] self.instance.move(ePoint(orgpos.x() + (orgwidth - newwidth)/2, orgpos.y())) + + + + Format:%H:%M + + + Format:%S + + diff --git a/lib/python/Screens/MessageBox.py b/lib/python/Screens/MessageBox.py index 51f39877..c3e3813b 100644 --- a/lib/python/Screens/MessageBox.py +++ b/lib/python/Screens/MessageBox.py @@ -3,6 +3,7 @@ from Components.ActionMap import ActionMap from Components.Label import Label from Components.Pixmap import Pixmap from Components.MenuList import MenuList +from Components.Sources.StaticText import StaticText from enigma import eTimer class MessageBox(Screen): @@ -16,6 +17,7 @@ class MessageBox(Screen): Screen.__init__(self, session) self["text"] = Label(text) + self["Text"] = StaticText(text) self.text = text self.close_on_any_key = close_on_any_key