Read fp-info-cache on first start of fp editor
if fp info list is not initialized
This commit is contained in:
parent
e37a89cdbf
commit
4788f3ae6b
|
@ -794,6 +794,10 @@ void FOOTPRINT_EDIT_FRAME::initLibraryTree()
|
|||
FP_LIB_TABLE* fpTable = Prj().PcbFootprintLibs();
|
||||
|
||||
WX_PROGRESS_REPORTER progressReporter( this, _( "Loading Footprint Libraries" ), 2 );
|
||||
if( GFootprintList.GetCount() == 0 )
|
||||
{
|
||||
GFootprintList.ReadCacheFromFile( Prj().GetProjectPath() + "fp-info-cache" );
|
||||
}
|
||||
GFootprintList.ReadFootprintFiles( fpTable, NULL, &progressReporter );
|
||||
progressReporter.Show( false );
|
||||
|
||||
|
|
Loading…
Reference in New Issue