- fixed minor issues

This commit is contained in:
Marius Stanciu 2019-08-25 21:19:03 +03:00 committed by Marius
parent d35343881f
commit eedfb56bf5
3 changed files with 6 additions and 5 deletions

View File

@ -3114,8 +3114,8 @@ class FlatCAMGeometry(FlatCAMObj, Geometry):
# engine of FlatCAM. Most likely are generated by some of tools and are special cases of geometries. # engine of FlatCAM. Most likely are generated by some of tools and are special cases of geometries.
self. special_group = None self. special_group = None
self.old_pp_state = '' self.old_pp_state = self.app.defaults["geometry_multidepth"]
self.old_toolchangeg_state = '' self.old_toolchangeg_state = self.app.defaults["geometry_toolchange"]
# Attributes to be included in serialization # Attributes to be included in serialization
# Always append to it because it carries contents # Always append to it because it carries contents

View File

@ -16,6 +16,7 @@ CAD program, and create G-Code for Isolation routing.
- finished adding the TclCommandCopperClear that can be called with alias: 'ncc' - finished adding the TclCommandCopperClear that can be called with alias: 'ncc'
- added new capability in NCC Tool when the reference object is of Gerber type and fixed some newly introduced errors - added new capability in NCC Tool when the reference object is of Gerber type and fixed some newly introduced errors
- fixed issue #298. The changes in postprocessors done in Preferences dis not update the object UI layout as it was supposed to. The selection of Marlin postproc. did not unhidden the Feedrate Rapids entry. - fixed issue #298. The changes in postprocessors done in Preferences dis not update the object UI layout as it was supposed to. The selection of Marlin postproc. did not unhidden the Feedrate Rapids entry.
- fixed minor issues
24.08.2019 24.08.2019

View File

@ -4640,9 +4640,9 @@ class Excellon(Geometry):
# now it can get bounds for nested lists of objects # now it can get bounds for nested lists of objects
log.debug("camlib.Excellon.bounds()") log.debug("camlib.Excellon.bounds()")
# if self.solid_geometry is None: if self.solid_geometry is None:
# log.debug("solid_geometry is None") log.debug("solid_geometry is None")
# return 0, 0, 0, 0 return 0, 0, 0, 0
def bounds_rec(obj): def bounds_rec(obj):
if type(obj) is list: if type(obj) is list: