From faf24538c4bbe09001212d27e4a5b3f1a7d23a1e Mon Sep 17 00:00:00 2001 From: sliptonic Date: Mon, 14 Jun 2021 10:39:55 -0500 Subject: [PATCH] Path bug splitting gcode by Fixture --- src/Mod/Path/PathScripts/PathPost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/PathScripts/PathPost.py b/src/Mod/Path/PathScripts/PathPost.py index 3c8facd865..39abd1cec5 100644 --- a/src/Mod/Path/PathScripts/PathPost.py +++ b/src/Mod/Path/PathScripts/PathPost.py @@ -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