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:
parent
36eb853570
commit
f846bc833b
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue