From a3ebead67fe8f5af0d1185c0982679dbf0b82868 Mon Sep 17 00:00:00 2001 From: Pascal de Bruijn Date: Tue, 23 Sep 2025 17:25:44 +0200 Subject: [PATCH] CAM: fix PocketShape OffsetPattern broken by #23649 --- src/Mod/CAM/Path/Op/PocketShape.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/Path/Op/PocketShape.py b/src/Mod/CAM/Path/Op/PocketShape.py index 9e6e81b955..76c7b4966e 100644 --- a/src/Mod/CAM/Path/Op/PocketShape.py +++ b/src/Mod/CAM/Path/Op/PocketShape.py @@ -77,7 +77,7 @@ class ObjectPocket(PathPocketBase.ObjectPocket): def areaOpSetDefaultValues(self, obj, job): """areaOpSetDefaultValues(obj, job) ... set default values""" - obj.OffsetPattern = "Offset" + obj.ClearingPattern = "Offset" obj.StepOver = 50 obj.ZigZagAngle = 45 obj.UseOutline = False