From fe3063e74b8d8e7091401919c9c899f988949fcb Mon Sep 17 00:00:00 2001 From: eap Date: Tue, 4 Oct 2011 14:01:58 +0000 Subject: [PATCH] 0021275: EDF 1681 SMESH: Find the number of nodes of any group remove 100000 limit --- src/SMESH_I/SMESH_Group_i.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SMESH_I/SMESH_Group_i.cxx b/src/SMESH_I/SMESH_Group_i.cxx index e4a2b8405..2399b77fe 100644 --- a/src/SMESH_I/SMESH_Group_i.cxx +++ b/src/SMESH_I/SMESH_Group_i.cxx @@ -489,7 +489,7 @@ CORBA::Long SMESH_GroupBase_i::GetNumberOfNodes() CORBA::Boolean SMESH_GroupBase_i::IsNodeInfoAvailable() { - if ( GetType() == SMESH::NODE || Size() < 100000 ) + if ( GetType() == SMESH::NODE/* || Size() < 100000 */) return true; if ( SMESHDS_GroupBase* g = GetGroupDS()) return ( myNbNodes > -1 && g->GetTic() == myGroupDSTic); -- 2.39.2