mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-05 21:54:16 +05:00
PAL13330( When mesh generation does not success, trace where )
- SMESH::ModifiedMesh(aMeshSObj, true, nbNodes == 0); + SMESH::ModifiedMesh(aMeshSObj, !computeFailed, nbNodes == 0);
This commit is contained in:
parent
ade1823d88
commit
b3a1001b71
@ -575,7 +575,7 @@ void SMESHGUI_ComputeOp::startOperation()
|
|||||||
nbFaces = aMesh->NbFaces();
|
nbFaces = aMesh->NbFaces();
|
||||||
nbVolums = aMesh->NbVolumes();
|
nbVolums = aMesh->NbVolumes();
|
||||||
_PTR(SObject) aMeshSObj = SMESH::FindSObject(aMesh);
|
_PTR(SObject) aMeshSObj = SMESH::FindSObject(aMesh);
|
||||||
SMESH::ModifiedMesh(aMeshSObj, true, nbNodes == 0);
|
SMESH::ModifiedMesh(aMeshSObj, !computeFailed, nbNodes == 0);
|
||||||
}
|
}
|
||||||
catch(const SALOME::SALOME_Exception & S_ex){
|
catch(const SALOME::SALOME_Exception & S_ex){
|
||||||
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
SalomeApp_Tools::QtCatchCorbaException(S_ex);
|
||||||
|
Loading…
Reference in New Issue
Block a user