[bugfix] when closing mainwindow, also close logwidget

This commit is contained in:
Marcel Paffrath 2022-03-15 10:41:29 +01:00
parent 5449210797
commit f1fd52b750

View File

@ -3729,6 +3729,7 @@ class MainWindow(QMainWindow):
def closeEvent(self, event):
if self.okToContinue():
self.logwidget.close()
event.accept()
else:
event.ignore()