mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-01-30 05:10:32 +05:00
PAL11200. Fix empty popup of a submesh on wire
This commit is contained in:
parent
c179781b62
commit
4d58bfa497
@ -2501,12 +2501,13 @@ void SMESHGUI::initialize( CAM_Application* app )
|
||||
group = pat.arg( SMESHGUI_Selection::typeName( GROUP ) ),
|
||||
hypo = pat.arg( SMESHGUI_Selection::typeName( HYPOTHESIS ) ),
|
||||
algo = pat.arg( SMESHGUI_Selection::typeName( ALGORITHM ) ),
|
||||
elems = QString( "'%1' '%2' '%3' '%4' '%5'" ).
|
||||
elems = QString( "'%1' '%2' '%3' '%4' '%5' '%6'" ).
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH_VERTEX ) ).
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH_EDGE ) ).
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH_FACE ) ).
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH_SOLID ) ).
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH_COMPOUND ) ),
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH_COMPOUND ) ).
|
||||
arg( SMESHGUI_Selection::typeName( SUBMESH ) ),
|
||||
subMesh = elems,
|
||||
mesh_group = mesh + " " + subMesh + " " + group,
|
||||
hyp_alg = hypo + " " + algo;
|
||||
|
@ -110,7 +110,7 @@ QtxValue SMESHGUI_Selection::param( const int ind, const QString& p ) const
|
||||
else if ( p=="hasReference" ) val = QtxValue( hasReference( ind ) );
|
||||
// else if ( p=="isVisible" ) val = QtxValue( isVisible( ind ) );
|
||||
|
||||
// printf( "--> param() : [%s] = %s (%s)\n", p.latin1(), val.toString().latin1(), val.typeName() );
|
||||
// printf( "--> param() : [%s] = %s (%s)\n", p.latin1(), val.toString().latin1(), val.typeName() );
|
||||
//if ( val.type() == QVariant::List )
|
||||
//cout << "size: " << val.toList().count() << endl;
|
||||
|
||||
@ -401,6 +401,8 @@ int SMESHGUI_Selection::type( const QString& entry, _PTR(Study) study )
|
||||
}
|
||||
if( aFTag>10 )
|
||||
res = GROUP;
|
||||
else
|
||||
res = SUBMESH;
|
||||
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user