Consistent TC naming/labeling, regardless of how created.

This commit is contained in:
Markus Lampert
2020-12-12 20:30:02 -08:00
parent 70364c0277
commit 1511fae5fe
2 changed files with 3 additions and 3 deletions

View File

@@ -334,7 +334,7 @@ class ToolBitSelector(object):
tools = self.selectedOrAllTools()
for tool in tools:
tc = PathToolControllerGui.Create(tool[1].Label, tool[1], tool[0])
tc = PathToolControllerGui.Create("TC: {}".format(tool[1].Label), tool[1], tool[0])
job.Proxy.addToolController(tc)
FreeCAD.ActiveDocument.recompute()