7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-14 20:09:35 +00:00

Fix swapped parameters

This commit is contained in:
Seth Hillbrand 2021-10-27 08:59:36 -07:00
parent 54be0da33d
commit 18318c73b5

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() )
{