From e5a206a2e4f348d426f1fdd2f776a6a8e676c19d Mon Sep 17 00:00:00 2001 From: theo-vt Date: Sun, 13 Jul 2025 22:50:21 -0400 Subject: [PATCH] Use correct flag --- src/Mod/Part/App/PartFeature.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/Mod/Part/App/PartFeature.cpp b/src/Mod/Part/App/PartFeature.cpp index f219d3ff1a..686513326d 100644 --- a/src/Mod/Part/App/PartFeature.cpp +++ b/src/Mod/Part/App/PartFeature.cpp @@ -1119,7 +1119,7 @@ static TopoShape _getTopoShape(const App::DocumentObject* obj, && (!link || (!link->_ChildCache.getSize() && link->getSubElements().size() <= 1))) { // if there is a linked object, and there is no child cache (which is used // for special handling of plain group), obtain shape from the linked object - shape = Feature::getTopoShape(linked, ShapeOption::ResolveLink | ShapeOption::Transform); + shape = Feature::getTopoShape(linked, ShapeOption::NoFlag); if (shape.isNull()) { return shape; } @@ -1144,8 +1144,7 @@ static TopoShape _getTopoShape(const App::DocumentObject* obj, if (link && link->getElementCountValue()) { linked = link->getTrueLinkedObject(false, &baseMat); if (linked && linked != owner) { - baseShape = - Feature::getTopoShape(linked, ShapeOption::ResolveLink | ShapeOption::Transform); + baseShape = Feature::getTopoShape(linked, ShapeOption::NoFlag); if (!link->getShowElementValue()) { baseShape.reTagElementMap(owner->getID(), owner->getDocument()->getStringHasher());