mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-29 10:50:34 +05:00
0022182: EDF SMESH: Mesh does not compute after a "Clear Mesh Data"
bool SMESH_subMesh::ComputeStateEngine(int event) { ... + if ( event == CLEAN ) + _alwaysComputed = false; // Unset 'true' set by MergeNodes() (issue 0022182) }
This commit is contained in:
parent
14ecb49e31
commit
b59de0167b
@ -1348,6 +1348,9 @@ bool SMESH_subMesh::ComputeStateEngine(int event)
|
|||||||
default:;
|
default:;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( event == CLEAN )
|
||||||
|
_alwaysComputed = false; // Unset 'true' set by MergeNodes() (issue 0022182)
|
||||||
|
|
||||||
if (_subShape.ShapeType() == TopAbs_VERTEX)
|
if (_subShape.ShapeType() == TopAbs_VERTEX)
|
||||||
{
|
{
|
||||||
_computeState = READY_TO_COMPUTE;
|
_computeState = READY_TO_COMPUTE;
|
||||||
|
Loading…
Reference in New Issue
Block a user