- removed another parameter in the serialized parameters for CNCJob object (no longer used) which made the project saving to fail (when CNCjob objects are in the project)

This commit is contained in:
Marius Stanciu
2021-03-20 00:20:38 +02:00
committed by Marius
parent 3011f159bc
commit 0117ff5ae3
2 changed files with 5 additions and 1 deletions

View File

@@ -7,6 +7,10 @@ CHANGELOG for FlatCAM beta
=================================================
20.03.2021
- removed another parameter in the serialized parameters for CNCJob object (no longer used) which made the project saving to fail (when CNCjob objects are in the project)
19.03.2021
- fixed mouse bytes generation if Cutout Plugin to add an extra drill hole at the end

View File

@@ -175,7 +175,7 @@ class CNCJobObject(FlatCAMObj, CNCjob):
# Always append to it because it carries contents
# from predecessors.
self.ser_attrs += [
'options', 'kind', 'cnc_tools', 'exc_cnc_tools', 'multitool', 'append_snippet',
'options', 'kind', 'tools', 'multitool', 'append_snippet',
'prepend_snippet', 'gc_header'
]