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:
Jeff Young 2020-04-11 20:31:48 +01:00
parent 505d8bf56e
commit dbded3e5dc
1 changed files with 1 additions and 1 deletions

View File

@ -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;