From 6c208534a7d4fcd39caee1accdf136b31bde11cb Mon Sep 17 00:00:00 2001 From: dbv Date: Tue, 16 Aug 2016 15:31:55 +0300 Subject: [PATCH] Fixed selection of full construction by name. --- src/Model/Model_SelectionNaming.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Model/Model_SelectionNaming.cpp b/src/Model/Model_SelectionNaming.cpp index fe623ef2e..ecfc26584 100644 --- a/src/Model/Model_SelectionNaming.cpp +++ b/src/Model/Model_SelectionNaming.cpp @@ -741,7 +741,8 @@ bool Model_SelectionNaming::selectSubShape(const std::string& theType, if (aConstr.get() && aConstr->groupName() == ModelAPI_ResultConstruction::group()) { theCont = aConstr; if (isFullName) { - theShapeToBeSelected = aConstr->shape(); + // For the full construction selection shape must be empty. + //theShapeToBeSelected = aConstr->shape(); return true; } // for sketch sub-elements selected -- 2.39.2