EgtGeomKernel 1.6u4 :

- correzione a SelectGroupObjs.
This commit is contained in:
Dario Sassi
2016-09-26 13:49:00 +00:00
parent a285a06ee4
commit bd87c42e72
2 changed files with 7 additions and 2 deletions
+7 -2
View File
@@ -1691,8 +1691,13 @@ GeomDB::SelectGroupObjs( int nId, int nFilter, bool bOnlyIfVisible)
continue ;
}
// eseguo selezione
if ( ! SetStatus( pGdbObj, GDB_ST_SEL))
return false ;
if ( ::GetGdbGroup( pGdbObj) != nullptr) {
return SelectGroupObjs( pGdbObj->m_nId, nFilter, bOnlyIfVisible) ;
}
else {
if ( ! SetStatus( pGdbObj, GDB_ST_SEL))
return false ;
}
}
return true ;
}