- fixed the 'save_project' Tcl Command - missing 'f_handlers' in the path

This commit is contained in:
Marius Stanciu
2022-01-15 18:18:05 +02:00
committed by Marius
parent f59a166503
commit e63eaa6279
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ CHANGELOG for FlatCAM beta
- fixed the Tcl Command 'set_origin' to work for a specified location - 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 - 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 '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 14.01.2022

View File

@@ -50,4 +50,4 @@ class TclCommandSaveProject(TclCommandSignaled):
:return: None or exception :return: None or exception
""" """
self.app.save_project(args['filename'], from_tcl=True) self.app.f_handlers.save_project(args['filename'], from_tcl=True)