Compare commits

...

2 Commits

Author SHA1 Message Date
e9cc579cf6 [minor] README.md 2022-03-15 10:41:48 +01:00
f1fd52b750 [bugfix] when closing mainwindow, also close logwidget 2022-03-15 10:41:29 +01:00
2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -42,7 +42,7 @@ In order to run PyLoT you need to install:
(the following are already dependencies of the above packages): (the following are already dependencies of the above packages):
- scipy - scipy
- numpy - numpy
- matplotlib - matplotlib <= 3.3.x
#### Some handwork: #### Some handwork: