From a2fc7ba4bf8f879d43d9714341d72ea20a6dde56 Mon Sep 17 00:00:00 2001 From: mpv Date: Mon, 9 Dec 2019 14:44:42 +0300 Subject: [PATCH] Too long line problem fix --- 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 468b60f7a..e8f99e894 100644 --- a/src/Model/Model_AttributeSelection.cpp +++ b/src/Model/Model_AttributeSelection.cpp @@ -1579,7 +1579,7 @@ void Model_AttributeSelection::updateInHistory(bool& theRemove) if (!myParent->isInList(*aConcealer, anEmptyShape)) {// avoid addition of duplicates setValue(*aConcealer, anEmptyShape); aChanged = true; - } else if (aCopyPossible && *aConcealer == aFeature) { // keep the origin in case of copy + } else if (aCopyPossible && *aConcealer == aFeature) {// keep origin in case of copy aChanged = true; } } -- 2.39.2