- fixed bug in Gerber isolation (Geometry expects now a value in string format and not float)
- fixed bug in Paint tool: now it is possible to paint geometry generated by External Isolation (or Internal isolation) - fixed bug in editing a multigeo Geometry object if previously a tool was deleted
This commit is contained in:
@@ -787,7 +787,7 @@ class NonCopperClear(FlatCAMTool, Gerber):
|
||||
else:
|
||||
log.debug("There are no geometries in the cleared polygon.")
|
||||
|
||||
geo_obj.options["cnctooldia"] = tool
|
||||
geo_obj.options["cnctooldia"] = str(tool)
|
||||
geo_obj.multigeo = True
|
||||
|
||||
def job_thread(app_obj):
|
||||
@@ -929,7 +929,7 @@ class NonCopperClear(FlatCAMTool, Gerber):
|
||||
log.debug("There are no geometries in the cleared polygon.")
|
||||
|
||||
geo_obj.multigeo = True
|
||||
geo_obj.options["cnctooldia"] = tool
|
||||
geo_obj.options["cnctooldia"] = str(tool)
|
||||
|
||||
# check to see if geo_obj.tools is empty
|
||||
# it will be updated only if there is a solid_geometry for tools
|
||||
|
||||
Reference in New Issue
Block a user