Browse Source

Only enumerate active libraries

pull/5/merge
Oliver 8 years ago
committed by Wayne Stambaugh
parent
commit
8b140186fe
  1. 5
      common/lib_table_base.cpp

5
common/lib_table_base.cpp

@ -368,7 +368,10 @@ std::vector<wxString> LIB_TABLE::GetLogicalLibs()
{
for( LIB_TABLE_ROWS_CITER it = cur->rows.begin(); it!=cur->rows.end(); ++it )
{
unique.insert( it->GetNickName() );
if( it->GetIsEnabled() )
{
unique.insert( it->GetNickName() );
}
}
} while( ( cur = cur->fallBack ) != 0 );

Loading…
Cancel
Save