From 6d2ffe9c95f69711b3174b3acf7b7d074d54a5bd Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Fri, 1 May 2020 00:31:21 +0300 Subject: [PATCH] - fixed a small issue in loading the Projects --- CHANGELOG.md | 1 + FlatCAMApp.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a75d77f..09998d82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ CHANGELOG for FlatCAM beta - fixed issue #409; problem was due of an assert I used in the handler of the Menu ->Options -> Flip X(Y) menu entry - activated and updated the editing in the Aperture Table in the Gerber Editor; not all parameters can be edited for every type of aperture - some strings updated +- fixed a small issue in loading the Projects 29.04.2020 diff --git a/FlatCAMApp.py b/FlatCAMApp.py index bfe6fc44..898300ee 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -9791,7 +9791,7 @@ class App(QtCore.QObject): ) ) - self.new_object(obj['kind'], obj['options']['name'], obj_init, active=False, fit=False, plot=plot) + self.new_object(obj['kind'], obj['options']['name'], obj_init, plot=plot) except Exception as e: print('App.open_project() --> ' + str(e))