- fixed the isolation distance in NCC Tool for the tools with iso_op type

This commit is contained in:
Marius Stanciu
2019-09-03 01:47:32 +03:00
committed by Marius
parent 4dbf6b2fa9
commit a1d874b705
2 changed files with 4 additions and 3 deletions

View File

@@ -1492,9 +1492,9 @@ class NonCopperClear(FlatCAMTool, Gerber):
new_geometry = []
if milling_type == 'cl':
isolated_geo = self.generate_envelope(tool_iso, 1)
isolated_geo = self.generate_envelope(tool_iso / 2, 1)
else:
isolated_geo = self.generate_envelope(tool_iso, 0)
isolated_geo = self.generate_envelope(tool_iso / 2, 0)
if isolated_geo == 'fail':
app_obj.inform.emit(_("[ERROR_NOTCL] Isolation geometry could not be generated."))