mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-26 17:30:35 +05:00
#29939 [CEA 29936] mesh is not updated if it's based on ShaperResults group
This commit is contained in:
parent
4c9ca4f7d3
commit
a81fac1d80
@ -2415,8 +2415,10 @@ void SMESH_Mesh_i::CheckGeomModif( bool theIsBreakLink )
|
|||||||
{
|
{
|
||||||
smIdType nb = NbNodes() + NbElements();
|
smIdType nb = NbNodes() + NbElements();
|
||||||
CheckGeomGroupModif();
|
CheckGeomGroupModif();
|
||||||
if ( nb != NbNodes() + NbElements() ) // something removed due to hypotheses change
|
bool updated = ( nb != NbNodes() + NbElements() );
|
||||||
|
if ( updated ) // something removed due to hypotheses change
|
||||||
_gen_i->UpdateIcons( me );
|
_gen_i->UpdateIcons( me );
|
||||||
|
if ( updated == geomChanged || nb == 0 )
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user