From 86e75037d9763466e7f9cc6cbf7ca4fff20eabac Mon Sep 17 00:00:00 2001 From: Florian Foinant-Willig Date: Sun, 28 Jan 2024 22:07:32 +0100 Subject: [PATCH] Set Suppressed false if no shape --- src/Mod/PartDesign/App/Feature.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/App/Feature.cpp b/src/Mod/PartDesign/App/Feature.cpp index f33d32d6f1..188607140a 100644 --- a/src/Mod/PartDesign/App/Feature.cpp +++ b/src/Mod/PartDesign/App/Feature.cpp @@ -72,7 +72,8 @@ App::DocumentObjectExecReturn* Feature::recompute() } } catch (Base::Exception& e) { - //invalid BaseShape, do nothing here but recompute below + //invalid BaseShape + Suppressed.setValue(false); } return DocumentObject::recompute();