aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/MessageBox.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-11-16 19:03:34 +0100
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2009-11-16 19:07:32 +0100
commit58965c6783464b3390b7ad0687f4ed4a559f9ce2 (patch)
tree7f3bc7c0d88f708c0aaac9a83f2fb60198e332aa /lib/python/Screens/MessageBox.py
parentb01b4beb24bab09840bf11e2f7ca06cccfd5677c (diff)
downloadenigma2-58965c6783464b3390b7ad0687f4ed4a559f9ce2.tar.gz
enigma2-58965c6783464b3390b7ad0687f4ed4a559f9ce2.zip
fixes bug #291
don't crash if auto scart switching is enabled and the scart voltage is high on enigma2 startup not the best solution since the whole scart switching stuff is broken by design, but this fix prevents the crash
Diffstat (limited to 'lib/python/Screens/MessageBox.py')
-rw-r--r--lib/python/Screens/MessageBox.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/MessageBox.py b/lib/python/Screens/MessageBox.py
index 86bf07d3..f3538b7b 100644
--- a/lib/python/Screens/MessageBox.py
+++ b/lib/python/Screens/MessageBox.py
@@ -12,9 +12,11 @@ class MessageBox(Screen):
TYPE_WARNING = 2
TYPE_ERROR = 3
- def __init__(self, session, text, type = TYPE_YESNO, timeout = -1, close_on_any_key = False, default = True, enable_input = True):
+ def __init__(self, session, text, type = TYPE_YESNO, timeout = -1, close_on_any_key = False, default = True, enable_input = True, msgBoxID = None):
self.type = type
Screen.__init__(self, session)
+
+ self.msgBoxID = msgBoxID
self["text"] = Label(text)
self["Text"] = StaticText(text)