mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-21 21:58:01 -06:00
CURA-4895 Close the splash screen when the early crash dialog appears. Increase the size of 'show detailed crash report button'
This commit is contained in:
parent
e64fb9c762
commit
a85a720184
2 changed files with 10 additions and 5 deletions
|
@ -72,8 +72,10 @@ class CrashHandler:
|
|||
if has_started and exception_type not in fatal_exception_types:
|
||||
return
|
||||
|
||||
self._send_report_checkbox = None
|
||||
self.early_crash_dialog = self._createEarlyCrashDialog()
|
||||
if not has_started:
|
||||
self._send_report_checkbox = None
|
||||
self.early_crash_dialog = self._createEarlyCrashDialog()
|
||||
|
||||
self.dialog = QDialog()
|
||||
self._createDialog()
|
||||
|
||||
|
@ -99,7 +101,7 @@ class CrashHandler:
|
|||
self._send_report_checkbox.setChecked(True)
|
||||
|
||||
show_details_button = QPushButton(catalog.i18nc("@action:button", "Show detailed crash report"), dialog)
|
||||
show_details_button.setMaximumWidth(180)
|
||||
show_details_button.setMaximumWidth(200)
|
||||
show_details_button.clicked.connect(self._showDetailedReport)
|
||||
|
||||
layout.addWidget(self._send_report_checkbox)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue