parent
0400c0a775
commit
403826b97c
|
@ -420,6 +420,12 @@ static void idf_export_footprint( BOARD* aPcb, FOOTPRINT* aFootprint, IDF3_BOARD
|
|||
|
||||
while( sM != eM )
|
||||
{
|
||||
if( !sM->m_Show )
|
||||
{
|
||||
++sM;
|
||||
continue;
|
||||
}
|
||||
|
||||
idfFile.Assign( resolver->ResolvePath( sM->m_Filename ) );
|
||||
idfExt = idfFile.GetExt();
|
||||
|
||||
|
|
|
@ -796,6 +796,12 @@ void EXPORTER_PCB_VRML::ExportVrmlFootprint( FOOTPRINT* aFootprint, std::ostream
|
|||
|
||||
while( sM != eM )
|
||||
{
|
||||
if( !sM->m_Show )
|
||||
{
|
||||
++sM;
|
||||
continue;
|
||||
}
|
||||
|
||||
SGNODE* mod3d = (SGNODE*) m_Cache3Dmodels->Load( sM->m_Filename );
|
||||
|
||||
if( nullptr == mod3d )
|
||||
|
|
Loading…
Reference in New Issue