From 2fd9d85210b560106f5885cf7f21e5da21e4fdd0 Mon Sep 17 00:00:00 2001 From: nds Date: Mon, 25 May 2015 08:37:28 +0300 Subject: [PATCH] A correction for translation operation Scenario: start sketch, create some lines, start translation operation, select a line. The result is an empty row in the multi selector control. --- src/Model/Model_AttributeSelection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Model/Model_AttributeSelection.cpp b/src/Model/Model_AttributeSelection.cpp index 6061cc038..e120b59cd 100644 --- a/src/Model/Model_AttributeSelection.cpp +++ b/src/Model/Model_AttributeSelection.cpp @@ -178,7 +178,7 @@ bool Model_AttributeSelection::isInitialized() return false; } if (aSelLab.IsAttribute(kCONSTUCTION_SIMPLE_REF_ID)) { // it is just reference to construction, nothing is in value - return false; + return true; } Handle(TNaming_NamedShape) aSelection; -- 2.39.2