Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemco Burema <r.burema@ultimaker.com>2021-12-29 13:18:49 +0300
committerRemco Burema <r.burema@ultimaker.com>2021-12-29 13:18:49 +0300
commit20b435af76505c18d3ff693aef5b845fb7a0b79a (patch)
tree868cbb62a54cdb4da90c7bc76072af22547b1697 /cura/CrashHandler.py
parent97da0b9183aa0f499d0738d968e680c82ed75135 (diff)
Qt5->Qt6: More renamed stuff.
part of CURA-8591
Diffstat (limited to 'cura/CrashHandler.py')
-rw-r--r--cura/CrashHandler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/CrashHandler.py b/cura/CrashHandler.py
index 563755f6d4..f5ce13e04b 100644
--- a/cura/CrashHandler.py
+++ b/cura/CrashHandler.py
@@ -161,7 +161,7 @@ class CrashHandler:
QDesktopServices.openUrl(QUrl.fromLocalFile( path ))
def _showDetailedReport(self):
- self.dialog.exec_()
+ self.dialog.exec()
def _createDialog(self):
"""Creates a modal dialog."""
@@ -449,5 +449,5 @@ class CrashHandler:
def _show(self):
# When the exception is in the skip_exception_types list, the dialog is not created, so we don't need to show it
if self.dialog:
- self.dialog.exec_()
+ self.dialog.exec()
os._exit(1)