X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/541ef4c1b75aa3dbd7086c33533da73b64584d3d..0abbe76c841a7cc624c30e946eec9e83e293bb4b:/lib/python/Screens/MessageBox.py 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)