- added a new preprocessor: default_laser
- in the app added a new tool type: "L" (laser) which when selected will autoselect the `default_laser` preprocessor in Milling Plugin
This commit is contained in:
@@ -1093,7 +1093,9 @@ class GeometryObjectUI(ObjectUI):
|
||||
"Can be:\n"
|
||||
"C1 ... C4 = circular tool with x flutes\n"
|
||||
"B = ball tip milling tool\n"
|
||||
"V = v-shape milling tool"))
|
||||
"V = v-shape milling tool\n"
|
||||
"L = laser")
|
||||
)
|
||||
self.geo_tools_table.horizontalHeaderItem(6).setToolTip(
|
||||
_("Plot column. It is visible only for MultiGeo Geometry objects.\n"
|
||||
"Enable plot for the selected tool geometry."))
|
||||
|
||||
@@ -151,11 +151,12 @@ class ToolsISOPrefGroupUI(OptionsGroupUI):
|
||||
"Can be:\n"
|
||||
"C1 ... C4 = circular tool with x flutes\n"
|
||||
"B = ball tip milling tool\n"
|
||||
"V = v-shape milling tool")
|
||||
"V = v-shape milling tool\n"
|
||||
"L = laser")
|
||||
)
|
||||
|
||||
self.tool_shape_combo = FCComboBox2(policy=False)
|
||||
self.tool_shape_combo.addItems(["C1", "C2", "C3", "C4", "B", "V"])
|
||||
self.tool_shape_combo.addItems(["C1", "C2", "C3", "C4", "B", "V", "L"])
|
||||
|
||||
tool_grid.addWidget(tool_shape_label, 0, 0)
|
||||
tool_grid.addWidget(self.tool_shape_combo, 0, 1, 1, 2)
|
||||
|
||||
Reference in New Issue
Block a user