diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-06-06 00:33:53 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-06-06 00:33:53 +0000 |
| commit | 25e60bd7d5288cfbc6c5645bf7d4242cb82a8974 (patch) | |
| tree | fdc3309db2e189942eb9a653c08181599f46ae2a /lib/python | |
| parent | dfbcb708c0620005c929f447ff7140c45f8f4e2a (diff) | |
| download | enigma2-25e60bd7d5288cfbc6c5645bf7d4242cb82a8974.tar.gz enigma2-25e60bd7d5288cfbc6c5645bf7d4242cb82a8974.zip | |
ugly messagebox summary screen, choices is still missing
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/MessageBox.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
