From f1fc33a9e4acec558eb5b5802a6fce5e6ad724f6 Mon Sep 17 00:00:00 2001 From: vsv Date: Fri, 29 Nov 2019 13:51:44 +0300 Subject: [PATCH] Fix line length --- src/XGUI/XGUI_FacesPanel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/XGUI/XGUI_FacesPanel.cpp b/src/XGUI/XGUI_FacesPanel.cpp index cfe66add5..28a35884c 100644 --- a/src/XGUI/XGUI_FacesPanel.cpp +++ b/src/XGUI/XGUI_FacesPanel.cpp @@ -319,7 +319,8 @@ void XGUI_FacesPanel::processSelection() if (aResGroup.get()) { FeaturePtr aFeature = ModelAPI_Feature::feature(aResGroup); if (aFeature.get()) { - AttributeSelectionListPtr aSelectionListAttr = aFeature->data()->selectionList("group_list"); + AttributeSelectionListPtr aSelectionListAttr = + aFeature->data()->selectionList("group_list"); std::string aType = aSelectionListAttr->selectionType(); if (aType != "Faces") continue; -- 2.39.2