diff --git a/CHANGELOG.md b/CHANGELOG.md index a42e4ca3..6f88de63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ CHANGELOG for FlatCAM beta - fixed the Tcl Command 'set_origin' to work for a specified location - updated the Tcl Command 'set_origin' to give the option to set the origin for a specified object - fixed the 'cncjob' Tcl Command to work in the new configuration of the data structures +- fixed the 'save_project' Tcl Command - missing 'f_handlers' in the path 14.01.2022 diff --git a/tclCommands/TclCommandSaveProject.py b/tclCommands/TclCommandSaveProject.py index ccf1a641..481aaf4b 100644 --- a/tclCommands/TclCommandSaveProject.py +++ b/tclCommands/TclCommandSaveProject.py @@ -50,4 +50,4 @@ class TclCommandSaveProject(TclCommandSignaled): :return: None or exception """ - self.app.save_project(args['filename'], from_tcl=True) + self.app.f_handlers.save_project(args['filename'], from_tcl=True)