summaryrefslogtreecommitdiff
path: root/qutebrowser/utils/error.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/utils/error.py')
-rw-r--r--qutebrowser/utils/error.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/utils/error.py b/qutebrowser/utils/error.py
index 1ead83788..f4f12e8a4 100644
--- a/qutebrowser/utils/error.py
+++ b/qutebrowser/utils/error.py
@@ -70,5 +70,5 @@ def handle_fatal_exc(exc: BaseException,
msg_text = str(exc)
if post_text:
msg_text += '\n\n{}'.format(post_text)
- msgbox = QMessageBox(QMessageBox.Critical, title, msg_text)
+ msgbox = QMessageBox(QMessageBox.Icon.Critical, title, msg_text)
msgbox.exec()