From f1fd52b75068f1327fde88245bba9e5303fe7881 Mon Sep 17 00:00:00 2001 From: Marcel Date: Tue, 15 Mar 2022 10:41:29 +0100 Subject: [PATCH] [bugfix] when closing mainwindow, also close logwidget --- PyLoT.py | 1 + 1 file changed, 1 insertion(+) diff --git a/PyLoT.py b/PyLoT.py index 725085e5..6b1d9d8a 100755 --- a/PyLoT.py +++ b/PyLoT.py @@ -3729,6 +3729,7 @@ class MainWindow(QMainWindow): def closeEvent(self, event): if self.okToContinue(): + self.logwidget.close() event.accept() else: event.ignore()