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:
authorLipu Fei <lipu.fei815@gmail.com>2018-01-30 18:41:33 +0300
committerDiego Prado Gesto <d.pradogesto@ultimaker.com>2018-02-05 13:26:38 +0300
commit30b1e74881bcfe85ffe035b24157f42918904861 (patch)
tree3598b8160cd848fc96c6bb78ed2ddd33e407c986 /cura_app.py
parentaefe24222f05a183f88473648eca55f060bd54e3 (diff)
Fixes for early crash dialog
CURA-4895
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura_app.py b/cura_app.py
index 79ef170ac9..4bab1d5a7b 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -101,7 +101,7 @@ def exceptHook(hook_type, value, traceback):
_crash_handler = CrashHandler(hook_type, value, traceback, has_started)
if not has_started:
CuraApplication.getInstance().removePostedEvents(None)
- _crash_handler.show()
+ _crash_handler.early_crash_dialog.show()
sys.exit(CuraApplication.getInstance().exec_())
else:
_crash_handler.show()