- fixed bug in the Isolation Tool that in certain cases an empty geometry was present in the solid_geometry which mae the CNCJob object generation to fail. It happen for Gerber objects created in the Gerber Editor

This commit is contained in:
Marius Stanciu
2020-06-10 03:27:53 +03:00
committed by Marius
parent 0643971b01
commit a3fd6e9f87
5 changed files with 59 additions and 29 deletions

View File

@@ -1100,6 +1100,9 @@ class GeometryObject(FlatCAMObj, Geometry):
except ValueError:
self.app.inform.emit('[ERROR_NOTCL] %s' % _("Wrong value format entered, use a number."))
return
except AttributeError:
self.ui_connect()
return
tool_dia = float('%.*f' % (self.decimals, d))
tooluid = int(self.ui.geo_tools_table.item(current_row, 5).text())