Don't error out when enumeration of footprints fails.

We still want to load the ones that did enumerate.

Fixes https://gitlab.com/kicad/code/kicad/issues/12864
This commit is contained in:
Jeff Young 2022-11-10 13:46:50 +00:00
parent 36eb853570
commit f846bc833b
1 changed files with 6 additions and 8 deletions

View File

@ -233,13 +233,11 @@ void FOOTPRINT_LIST_IMPL::loadFootprints()
wxArrayString fpnames;
if( !CatchErrors( [&]()
{
m_lib_table->FootprintEnumerate( fpnames, nickname, false );
} ) )
{
return 0;
}
CatchErrors(
[&]()
{
m_lib_table->FootprintEnumerate( fpnames, nickname, false );
} );
for( wxString fpname : fpnames )
{
@ -248,7 +246,7 @@ void FOOTPRINT_LIST_IMPL::loadFootprints()
{
auto* fpinfo = new FOOTPRINT_INFO_IMPL( this, nickname, fpname );
queue_parsed.move_push( std::unique_ptr<FOOTPRINT_INFO>( fpinfo ) );
});
} );
if( m_cancelled )
return 0;