From 830caf34c0b5f8a39e9002b40a91e27d90f41ec2 Mon Sep 17 00:00:00 2001 From: wmayer Date: Thu, 27 Sep 2018 13:30:30 +0200 Subject: [PATCH] fixes 0003547: Linear pattern, mirrored and polar pattern feature not working on a hole just on pocket --- src/Mod/PartDesign/App/FeatureHole.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/App/FeatureHole.cpp b/src/Mod/PartDesign/App/FeatureHole.cpp index 2848cd02aa..3fd2cc64a6 100644 --- a/src/Mod/PartDesign/App/FeatureHole.cpp +++ b/src/Mod/PartDesign/App/FeatureHole.cpp @@ -1253,7 +1253,8 @@ App::DocumentObjectExecReturn *Hole::execute(void) builder.Add(holes, transformer.Shape() ); } - holes.Move( this->getLocation().Inverted() ); + // Do not apply a placement to the AddSubShape property (#0003547) + //holes.Move( this->getLocation().Inverted() ); // set the subtractive shape property for later usage in e.g. pattern this->AddSubShape.setValue( holes );