Entry in pipeline browser with same name than those into the object browser.

This commit is contained in:
Anthony Geay 2023-04-11 13:39:34 +02:00
parent 4bc55e3217
commit a8fd1e6ddd
2 changed files with 3 additions and 0 deletions

View File

@ -1775,6 +1775,7 @@ void GEOM_Displayer::Update( SALOME_PV3DPrs* prs )
// processing for usual geometry presentation
//
{
pv3dPrs->SetName( myNameInObjBrowser );
GEOM_Actor *actor = GEOM_Actor::New();
updateActorProperties( actor, true );
pv3dPrs->FillUsingActor( actor );
@ -1882,6 +1883,7 @@ SALOME_Prs* GEOM_Displayer::buildPresentation( const QString& entry,
GEOM::GEOM_BaseObject_var GeomBaseObject = GEOM::GEOM_BaseObject::_narrow( object );
if ( !GeomBaseObject->_is_nil() )
{
myNameInObjBrowser = getName( GeomBaseObject );
myType = GeomBaseObject->GetType();
// downcast to GEOM object

View File

@ -284,6 +284,7 @@ protected:
TCollection_AsciiString myFieldStepName;
double myFieldStepRangeMin;
double myFieldStepRangeMax;
std::string myNameInObjBrowser;
std::string myName;
std::string myTexture;
int myType;