- Milling Plugin: when an object has a "tools_mill_tooldia" property set as an object option it is used to set the Tool Dia field

This commit is contained in:
Marius Stanciu
2024-01-07 03:04:21 +02:00
parent 830e8b7aff
commit 97bc45926a
2 changed files with 11 additions and 4 deletions

View File

@@ -7,14 +7,18 @@ CHANGELOG for FlatCAM Evo beta
=================================================
7.01.2024
- Milling Plugin: when an object has a "tools_mill_tooldia" property set as an object option it is used to set the Tool Dia field
6.01.2024
- NCC Tool: make sure to use the CutZ value set in Preferences NCC Tool section
- NCC Plugin: make sure to use the CutZ value set in Preferences NCC Tool section
5.01.2024
- Follow Tool: added more parameters: simplification and union
- Follow Tool: the resulting LineString geometries are now merged together to minimize the number of lines
- Follow Plugin: added more parameters: simplification and union
- Follow Plugin: the resulting LineString geometries are now merged together to minimize the number of lines
3.01.2024

View File

@@ -644,7 +644,10 @@ class ToolMilling(AppTool, Excellon):
# #######3 TEMP SETTINGS #################
# ########################################
self.ui.addtool_entry.set_value(self.app.options["tools_mill_tooldia"])
try:
self.ui.addtool_entry.set_value(selected_obj.obj_options["tools_mill_tooldia"])
except AttributeError:
self.ui.addtool_entry.set_value(self.app.options["tools_mill_tooldia"])
self.on_object_changed()
if self.target_obj: