From 70e7642a8cdf2191e246458ec5f8294a6ced6344 Mon Sep 17 00:00:00 2001 From: mpa Date: Tue, 17 Nov 2015 17:37:11 +0300 Subject: [PATCH] INT PAL 0052968: 'Mesh Information' dialog shows incorrect color of group built from geometry. --- src/SMESHGUI/SMESHGUI_GroupOnShapeDlg.cxx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/SMESHGUI/SMESHGUI_GroupOnShapeDlg.cxx b/src/SMESHGUI/SMESHGUI_GroupOnShapeDlg.cxx index 258084e05..deeaad22f 100644 --- a/src/SMESHGUI/SMESHGUI_GroupOnShapeDlg.cxx +++ b/src/SMESHGUI/SMESHGUI_GroupOnShapeDlg.cxx @@ -30,6 +30,7 @@ #include "SMESHGUI.h" #include "SMESHGUI_Utils.h" #include "SMESHGUI_GEOMGenUtils.h" +#include #include #include @@ -350,9 +351,17 @@ bool SMESHGUI_GroupOnShapeOp::onApply() //printf( "apply() %s %s\n", (*geomID).latin1(), name.latin1() ); group = mesh->CreateGroupFromGEOM( elemType, name.toLatin1().data(), geom ); - if( !group->_is_nil() ) + if( !group->_is_nil() ) { + // set default color for created group + QColor c = SMESH::GetColor( "SMESH", "default_grp_color" ); + SALOMEDS::Color aColor; + aColor.R = c.redF(); + aColor.G = c.greenF(); + aColor.B = c.blueF(); + group->SetColor(aColor); if( _PTR(SObject) aSObject = SMESH::ObjectToSObject( group ) ) anEntryList.append( aSObject->GetID().c_str() ); + } } } SMESHGUI::Modified(); -- 2.30.2