Merge pull request #4864 from sliptonic/master

[Path] bug splitting gcode by Fixture
This commit is contained in:
sliptonic
2021-06-15 09:09:13 -05:00
committed by GitHub

View File

@@ -288,7 +288,7 @@ class CommandPathPost:
for obj in job.Operations.Group:
tc = PathUtil.toolControllerForOp(obj)
if tc is not None and PathUtil.opProperty(obj, 'Active'):
if tc.ToolNumber != currTool:
if tc.ToolNumber != currTool or split is True:
sublist.append(tc)
PathLog.debug("Appending TC: {}".format(tc.Name))
currTool = tc.ToolNumber