From 27aaaf7def90452f359c8ded1e0a959568697313 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Wed, 21 Jun 2017 11:43:32 +0800 Subject: [PATCH] Path.Area: fix thickening of pocket path --- src/Mod/Path/App/Area.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Mod/Path/App/Area.cpp b/src/Mod/Path/App/Area.cpp index 46dfe29604..9068e1f751 100644 --- a/src/Mod/Path/App/Area.cpp +++ b/src/Mod/Path/App/Area.cpp @@ -1613,8 +1613,8 @@ TopoDS_Shape Area::getShape(int index) { CAreaConfig conf(myParams); - // if no offset or thicken, try pocket - if(fabs(myParams.Offset) < Precision::Confusion() && !myParams.Thicken) { + // if no offset, try pocket + if(fabs(myParams.Offset) < Precision::Confusion()) { if(myParams.PocketMode == PocketModeNone) { myShape = toShape(*myArea,myParams.Fill); myShapeDone = true;