Fix swapped parameters

This commit is contained in:
Seth Hillbrand 2021-10-27 08:59:36 -07:00
parent 54be0da33d
commit 18318c73b5
1 changed files with 1 additions and 1 deletions

View File

@ -1953,7 +1953,7 @@ int SCH_EDITOR_CONTROL::EditWithSymbolEditor( const TOOL_EVENT& aEvent )
symbolEditor->LoadSymbolFromSchematic( symbol );
else if( aEvent.IsAction( &EE_ACTIONS::editLibSymbolWithLibEdit ) )
{
symbolEditor->LoadSymbol( symbol->GetLibId(), symbol->GetConvert(), symbol->GetUnit() );
symbolEditor->LoadSymbol( symbol->GetLibId(), symbol->GetUnit(), symbol->GetConvert() );
if( !symbolEditor->IsSymbolTreeShown() )
{