From 636173621bed5da6280b57908764a944f014177c Mon Sep 17 00:00:00 2001 From: Artem Zhidkov Date: Wed, 16 Sep 2020 10:44:35 +0300 Subject: [PATCH] Fix regressions after resolving issue #19890 --- src/Model/Model_ResultPart.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Model/Model_ResultPart.cpp b/src/Model/Model_ResultPart.cpp index 51d8879bd..7c42dd987 100644 --- a/src/Model/Model_ResultPart.cpp +++ b/src/Model/Model_ResultPart.cpp @@ -202,6 +202,7 @@ std::shared_ptr Model_ResultPart::shape() GeomTrsfPtr aTrsf = std::make_shared(new gp_Trsf(*myTrsf)); GeomAlgoAPI_Transform aTransform(anOrigShape, aTrsf); aResult = aTransform.shape(); + myShape = aResult->impl(); } if (!myShape.IsNull() && aToSendUpdate) { static const Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_UPDATED); -- 2.30.2