occgeo.changed = 1;
//occgeo.BuildFMap();
+ //rnv to fix 19978 issue
+ bool includeSelf = true;
+ if ( shape.ShapeType() == TopAbs_FACE) {
+ occgeo.fmap.Add( shape );
+ includeSelf = false;
+ }
+
// fill maps of shapes of occgeo with not yet meshed subshapes
// get root submeshes
list< SMESH_subMesh* >::iterator rootIt = rootSM.begin(), rootEnd = rootSM.end();
for ( ; rootIt != rootEnd; ++rootIt ) {
SMESH_subMesh * root = *rootIt;
- SMESH_subMeshIteratorPtr smIt = root->getDependsOnIterator(/*includeSelf=*/true,
+ SMESH_subMeshIteratorPtr smIt = root->getDependsOnIterator(/*includeSelf=*/includeSelf,
/*complexShapeFirst=*/true);
while ( smIt->more() ) {
SMESH_subMesh* sm = smIt->next();