- 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:
Marius Stanciu
2022-02-10 14:01:32 +02:00
committed by Marius
parent 1edc2cd241
commit 3d4e195ae1
13 changed files with 173 additions and 22 deletions

View File

@@ -197,7 +197,7 @@ class AppGCodeEditor(QtCore.QObject):
job_item = QtWidgets.QTableWidgetItem(job_item_txt)
# -------------------- TOOL SHAPE ------------------------------------- #
tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V"]
tool_type_item_options = ["C1", "C2", "C3", "C4", "B", "V", "L"]
try:
tool_shape_item_txt = tool_type_item_options[dia_value['data']['tools_mill_tool_shape']]
except TypeError: