- fixed recently introduced bug in milling drills/slots functions

This commit is contained in:
Marius Stanciu
2019-06-22 18:02:41 +03:00
parent 68bdfaf062
commit 963fbc8cbf
2 changed files with 3 additions and 2 deletions

View File

@@ -2353,7 +2353,7 @@ class FlatCAMExcellon(FlatCAMObj, Excellon):
geo_obj.options['Tools_in_use'] = tool_table_items
geo_obj.options['type'] = 'Excellon Geometry'
geo_obj.options["cnctooldia"] = float(tooldia)
geo_obj.options["cnctooldia"] = str(tooldia)
geo_obj.solid_geometry = []
@@ -2448,7 +2448,7 @@ class FlatCAMExcellon(FlatCAMObj, Excellon):
geo_obj.options['Tools_in_use'] = tool_table_items
geo_obj.options['type'] = 'Excellon Geometry'
geo_obj.options["cnctooldia"] = float(tooldia)
geo_obj.options["cnctooldia"] = str(tooldia)
geo_obj.solid_geometry = []