aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/MessageBox.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2007-12-20 23:01:53 +0000
committerFelix Domke <tmbinc@elitedvb.net>2007-12-20 23:01:53 +0000
commitb6119305b4f5e6606750bf418c434ad9b5a810fa (patch)
treedad495e577cf0dc24704c4ad03449d11c40e49d9 /lib/python/Screens/MessageBox.py
parent541ef4c1b75aa3dbd7086c33533da73b64584d3d (diff)
downloadenigma2-b6119305b4f5e6606750bf418c434ad9b5a810fa.tar.gz
enigma2-b6119305b4f5e6606750bf418c434ad9b5a810fa.zip
allow setting default to false/no
Diffstat (limited to 'lib/python/Screens/MessageBox.py')
-rw-r--r--lib/python/Screens/MessageBox.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/python/Screens/MessageBox.py b/lib/python/Screens/MessageBox.py
index 9354e1f8..df276670 100644
--- a/lib/python/Screens/MessageBox.py
+++ b/lib/python/Screens/MessageBox.py
@@ -11,7 +11,7 @@ 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 = 0):
+ def __init__(self, session, text, type = TYPE_YESNO, timeout = -1, close_on_any_key = False, default = True):
self.type = type
Screen.__init__(self, session)
@@ -35,7 +35,10 @@ class MessageBox(Screen):
self["InfoPixmap"].hide()
if type == self.TYPE_YESNO:
- self.list = [ (_("yes"), 0), (_("no"), 1) ]
+ if default == True:
+ self.list = [ (_("yes"), 0), (_("no"), 1) ]
+ else:
+ self.list = [ (_("no"), 1), (_("yes"), 0) ]
self["list"] = MenuList(self.list)