mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-29 02:40:35 +05:00
Fix for Bug IPAL12478: Group of all Edges is not create automatically during Export med file.
Incorrect varable was changed. (myFacesDefaultFamilyId to myEdgesDefaultFamilyId)
This commit is contained in:
parent
1b6700a4a5
commit
a104996e30
@ -454,7 +454,7 @@ Driver_Mesh::Status DriverMED_W_SMESHDS_Mesh::Perform()
|
|||||||
if ( edge_fam != anElemFamMap.end() )
|
if ( edge_fam != anElemFamMap.end() )
|
||||||
aFamilyNums->push_back( edge_fam->second );
|
aFamilyNums->push_back( edge_fam->second );
|
||||||
else
|
else
|
||||||
aFamilyNums->push_back( myFacesDefaultFamilyId );
|
aFamilyNums->push_back( myEdgesDefaultFamilyId );
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( aNbSeg2 ) {
|
if ( aNbSeg2 ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user