Don't exit when we fail to find a 3D model: there may be more.

Fixes https://gitlab.com/kicad/code/kicad/issues/7670
This commit is contained in:
Jeff Young 2021-09-15 21:52:49 +01:00
parent 684d15895c
commit 21313a4c1a
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ bool KICADFOOTPRINT::ComposePCB( class PCBMODEL* aPCB, S3D_RESOLVER* resolver,
"File not found: %s\n",
m_refdes,
mname ) );
return false;
continue;
}
std::string fname( mname.ToUTF8() );