From 11f9c249e764b27c78afd9b0a0de5acb3f05f760 Mon Sep 17 00:00:00 2001 From: mwganson Date: Mon, 1 Jun 2020 20:19:53 -0500 Subject: [PATCH] [Part Design] fix refine feature in Hole feature --- src/Mod/PartDesign/App/FeatureHole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/App/FeatureHole.cpp b/src/Mod/PartDesign/App/FeatureHole.cpp index 5343d9cce7..415f436f5b 100644 --- a/src/Mod/PartDesign/App/FeatureHole.cpp +++ b/src/Mod/PartDesign/App/FeatureHole.cpp @@ -1260,7 +1260,7 @@ App::DocumentObjectExecReturn *Hole::execute(void) base = getSolid(result); if (base.IsNull()) return new App::DocumentObjectExecReturn("Hole: Resulting shape is not a solid"); - + base = refineShapeIfActive(base); builder.Add(holes, transformer.Shape() ); }