From b567525768b8986eab32564cd09da4fdd59db60c Mon Sep 17 00:00:00 2001 From: tarman3 Date: Thu, 11 Dec 2025 08:22:35 +0200 Subject: [PATCH] CAM: RampEntry Dressup - Remove X0Y0 from beginning --- src/Mod/CAM/Path/Dressup/Gui/RampEntry.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py b/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py index 47def949bf..8c95ff7fab 100644 --- a/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py +++ b/src/Mod/CAM/Path/Dressup/Gui/RampEntry.py @@ -343,13 +343,6 @@ class ObjectDressup: last_params.update(params) - if cmd.Name in Path.Geom.CmdMoveAll and ( - "X" not in params or "Y" not in params or "Z" not in params - ): - params["X"] = params.get("X", start_point[0]) - params["Y"] = params.get("Y", start_point[1]) - params["Z"] = params.get("Z", start_point[2]) - cmd = Path.Command(cmd.Name, params) annotated = AnnotatedGCode(cmd, start_point) self.edges.append(annotated) start_point = annotated.end_point