From 96874fc4b6eeeec6b368ffefca982d3339de3519 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 26 Dec 2005 10:36:57 +0000 Subject: [PATCH] PAL10953. Fix GetSubmeshComputed(): there may be elements but no nodes in a submesh --- src/SMESH/SMESH_subMesh.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SMESH/SMESH_subMesh.cxx b/src/SMESH/SMESH_subMesh.cxx index 100a59560..250040453 100644 --- a/src/SMESH/SMESH_subMesh.cxx +++ b/src/SMESH/SMESH_subMesh.cxx @@ -202,7 +202,7 @@ bool SMESH_subMesh::SubMeshesComputed() // recompute 3D when a locale triangle hypo changes (see PAL7428). // So we check if mesh is really present //bool computeOk = (sm->GetComputeState() == COMPUTE_OK); - bool computeOk = ( ds && ds->GetNodes()->more() ); + bool computeOk = ( ds && ( ds->GetNodes()->more() || ds->GetElements()->more() )); if (!computeOk) { const TopoDS_Shape & ss = sm->GetSubShape(); -- 2.30.2