- 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:
10
CHANGELOG.md
10
CHANGELOG.md
@@ -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
|
||||
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user