Make sure to check for unit designator when converting to KIIDs.
Fixes https://gitlab.com/kicad/code/kicad/issues/2458
This commit is contained in:
parent
505d8bf56e
commit
dbded3e5dc
|
@ -269,7 +269,7 @@ wxString convertReferencesToKIIDs( const wxString& aSource )
|
|||
{
|
||||
SCH_COMPONENT* refComponent = references[ jj ].GetComp();
|
||||
|
||||
if( ref == refComponent->GetRef( &references[ jj ].GetSheetPath() ) )
|
||||
if( ref == refComponent->GetRef( &references[ jj ].GetSheetPath(), true ) )
|
||||
{
|
||||
token = refComponent->m_Uuid.AsString() + ":" + remainder;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue