From da143eb29f0e322dadafb36d188e1b857f10916a Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Thu, 31 Dec 2020 04:58:51 +0200 Subject: [PATCH] - fixed the issue with not saving the project on program close if selecting the 'Yes' option. --- CHANGELOG.md | 4 ++++ app_Main.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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()