- minor changes

This commit is contained in:
Marius Stanciu
2022-01-26 13:35:01 +02:00
committed by Marius
parent 73fca98f90
commit b69738d852
2 changed files with 2 additions and 1 deletions

View File

@@ -14,6 +14,7 @@ CHANGELOG for FlatCAM beta
- modified the bounding box utility feature in the Gerber Object UI to work with buffer value of 0.0 and rounded corners - modified the bounding box utility feature in the Gerber Object UI to work with buffer value of 0.0 and rounded corners
- in Cutout plugin added the ability to create Manual Geometries with negative tool diameters - in Cutout plugin added the ability to create Manual Geometries with negative tool diameters
- fix the Transform plugin, buffer functionality for Geometry objects such that the buffer with negative values will work by crating a buffer toward the interior of that geometry - fix the Transform plugin, buffer functionality for Geometry objects such that the buffer with negative values will work by crating a buffer toward the interior of that geometry
- minor changes
25.01.2022 25.01.2022

View File

@@ -176,7 +176,7 @@ class TclCommandGeoCutout(TclCommandSignaled):
try: try:
cutout_obj = self.app.collection.get_by_name(str(name)) cutout_obj = self.app.collection.get_by_name(str(name))
except Exception as e: except Exception as e:
log.error("TclCommandGeoCutout --> %s" % str(e)) self.app.log.error("TclCommandGeoCutout.execute() --> %s" % str(e))
return "Could not retrieve object: %s" % name return "Could not retrieve object: %s" % name
if 0 in {dia}: if 0 in {dia}: