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>
This commit is contained in:
FEA-eng
2025-08-22 22:47:04 +02:00
committed by GitHub
parent b7c233b94e
commit dc489914d2

View File

@@ -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;
}