From 501c6273a367a4486c37a086b4bb01d4fa4e30da Mon Sep 17 00:00:00 2001 From: Florian Foinant-Willig Date: Sat, 30 Aug 2025 18:31:53 +0200 Subject: [PATCH] PartDesign: only warn on refine failure --- src/Mod/PartDesign/App/FeatureRefine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/PartDesign/App/FeatureRefine.h b/src/Mod/PartDesign/App/FeatureRefine.h index 52b790b13a..673afd78bb 100644 --- a/src/Mod/PartDesign/App/FeatureRefine.h +++ b/src/Mod/PartDesign/App/FeatureRefine.h @@ -61,7 +61,7 @@ protected: * computation is necessary. */ bool onlyHaveRefined(); - TopoShape refineShapeIfActive(const TopoShape& oldShape, const RefineErrorPolicy onError = RefineErrorPolicy::Raise) const; + TopoShape refineShapeIfActive(const TopoShape& oldShape, const RefineErrorPolicy onError = RefineErrorPolicy::Warn) const; }; using FeatureRefinePython = App::FeaturePythonT;