CADSTAR sch: Include gate in error message when symbols are scaled
This commit is contained in:
parent
52a936ac61
commit
18e36155a5
|
@ -685,7 +685,9 @@ void CADSTAR_SCH_ARCHIVE_LOADER::loadSchematicSymbolInstances()
|
||||||
wxString symbolName = sym.ComponentRef.Designator;
|
wxString symbolName = sym.ComponentRef.Designator;
|
||||||
|
|
||||||
if( symbolName.empty() )
|
if( symbolName.empty() )
|
||||||
symbolName = wxString::Format( "ID: %s", sym.ID);
|
symbolName = wxString::Format( "ID: %s", sym.ID );
|
||||||
|
else
|
||||||
|
symbolName += sym.GateID;
|
||||||
|
|
||||||
m_reporter->Report( wxString::Format( _( "Symbol '%s' is scaled in the original "
|
m_reporter->Report( wxString::Format( _( "Symbol '%s' is scaled in the original "
|
||||||
"CADSTAR schematic but this is not supported "
|
"CADSTAR schematic but this is not supported "
|
||||||
|
|
Loading…
Reference in New Issue