Don’t close Dialog on pressing OK button of QMessageBox

2.1k Views Asked by At

I have called QMessageBox() like this:

class Main(QDialog):
    def __init__(self):
        self.view = QUiLoader().load("app.ui", self)
        self.view.show()
        self.functionA()
    ....
    functionA():
        try:
            ....
        except Exception:
            QMessageBox.critical(self, "Error", "System Failure")

def main():
    app = QApplication(sys.argv)
    a = Main()
    sys.exit(app.exec_())

if __name__ == "__main__"
    main()

When i click OK button of Message box it also closes my Dialog. How to avoid this ?

2

There are 2 best solutions below

1
On BEST ANSWER

Use QMessageBox like this:

QMessageBox.critical(self.view, "Error", "System Failure")
2
On

Your code example (slightly altered to make it run) works for me:

from PySide.QtGui import *

class Main(QDialog):
    def __init__(self):
        super().__init__()
        self.show()
        self.functionA()

    def functionA(self):
        try:
            raise Exception()
        except Exception:
            QMessageBox.critical(self, "Error", "System Failure")

app = QApplication([])
a = Main()
app.exec_()

You can press OK on the message box and the dialog will not be closed. You are probably doing something else too that causes the closing of the dialog.