1
0

Merge pull request #9775 from f321x/fix_block_exception_dialog

fix: blocked Exception_Window by setting modality
This commit is contained in:
accumulator
2025-05-01 10:46:51 +02:00
committed by GitHub

View File

@@ -99,6 +99,9 @@ class Exception_Window(BaseCrashReporter, QWidget, MessageBoxMixin, Logger):
main_box.addLayout(buttons)
# prioritizes the window input over all other windows
self.setWindowModality(QtCore.Qt.WindowModality.ApplicationModal)
self.setLayout(main_box)
self.show()