diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b28e5f1..8b92c1c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta ================================================= +31.12.2020 + +- fixed the issue with not saving the project on program close if selecting the 'Yes' option. + 30.12.2020 - fixed error in Gerber Editor diff --git a/app_Main.py b/app_Main.py index 22dd2517..718fc22b 100644 --- a/app_Main.py +++ b/app_Main.py @@ -3696,7 +3696,7 @@ class App(QtCore.QObject): self.trayIcon.hide() except Exception: pass - self.on_file_saveprojectas(use_thread=True, quit_action=True) + self.f_handlers.on_file_saveprojectas(use_thread=True, quit_action=True) elif response == bt_no: try: self.trayIcon.hide()