DbLib: Use full alias name when loading single symbol

This commit is contained in:
Jon Evans 2022-08-27 22:07:41 -04:00
parent 6bad88e592
commit 0474ae86ea
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ LIB_SYMBOL* SCH_DATABASE_PLUGIN::LoadSymbol( const wxString& aLibraryPath,
return nullptr;
}
return loadSymbolFromRow( symbolName, *table, result );
return loadSymbolFromRow( aAliasName, *table, result );
}