From dc489914d203dfe5665bb651ecf732ecedf6b9f2 Mon Sep 17 00:00:00 2001 From: FEA-eng <59876896+FEA-eng@users.noreply.github.com> Date: Fri, 22 Aug 2025 22:47:04 +0200 Subject: [PATCH] PartDesign: Fix small typo in multiple solids error (#23299) * PartDesign: Update FeatureChamfer.cpp * Update src/Mod/PartDesign/App/FeatureChamfer.cpp --------- Co-authored-by: Max Wilfinger <6246609+maxwxyz@users.noreply.github.com> --- src/Mod/PartDesign/App/FeatureChamfer.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/Mod/PartDesign/App/FeatureChamfer.cpp b/src/Mod/PartDesign/App/FeatureChamfer.cpp index 3b7ff2ba1a..63443623af 100644 --- a/src/Mod/PartDesign/App/FeatureChamfer.cpp +++ b/src/Mod/PartDesign/App/FeatureChamfer.cpp @@ -171,7 +171,7 @@ App::DocumentObjectExecReturn *Chamfer::execute() this->rawShape = shape; shape = refineShapeIfActive(shape); if (!isSingleSolidRuleSatisfied(shape.getShape())) { - return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP("Exception", "Result has multiple solids:enable 'Allow Compounds' in the active body.")); + return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP("Exception", "Result has multiple solids: enable 'Allow Compounds' in the active body.")); } shape = getSolid(shape); @@ -260,6 +260,3 @@ static App::DocumentObjectExecReturn *validateParameters(int chamferType, double return App::DocumentObject::StdReturn; } - - -