Added IGES replacement option

- If no STEP substitute is found, look for IGES
This commit is contained in:
Oliver 2017-11-07 19:20:22 +11:00 committed by Wayne Stambaugh
parent aefa0bf3b4
commit c932e4af1b
1 changed files with 6 additions and 0 deletions

View File

@ -923,6 +923,12 @@ bool PCBMODEL::getModelLabel( const std::string aFileName, TDF_Label& aLabel )
alts.Add( "Stp" );
alts.Add( "Step" );
// IGES files
alts.Add( "iges" );
alts.Add( "IGES" );
alts.Add( "igs" );
alts.Add( "IGS" );
//TODO - Other alternative formats?
for( auto alt : alts )