eeschema: do not propagate text field change to other units for not annotated symbols
Fixes #4602 https://gitlab.com/kicad/code/kicad/issues/4602
This commit is contained in:
parent
b681af4556
commit
e099a82d15
|
@ -312,21 +312,24 @@ void DIALOG_SCH_EDIT_ONE_FIELD::UpdateField( SCH_FIELD* aField, SCH_SHEET_PATH*
|
||||||
&& ( fieldType == VALUE || fieldType == FOOTPRINT || fieldType == DATASHEET ) )
|
&& ( fieldType == VALUE || fieldType == FOOTPRINT || fieldType == DATASHEET ) )
|
||||||
{
|
{
|
||||||
const wxString thisRef = component->GetRef( &( editFrame->GetCurrentSheet() ) );
|
const wxString thisRef = component->GetRef( &( editFrame->GetCurrentSheet() ) );
|
||||||
int thisUnit = component->GetUnit();
|
|
||||||
|
|
||||||
SCH_REFERENCE_LIST components;
|
if( thisRef.Last() != '?' ) // Obvioulsy, the component must be annotated
|
||||||
editFrame->GetCurrentSheet().GetComponents( components );
|
|
||||||
|
|
||||||
for( unsigned i = 0; i < components.GetCount(); i++ )
|
|
||||||
{
|
{
|
||||||
SCH_REFERENCE componentRef = components[i];
|
int thisUnit = component->GetUnit();
|
||||||
|
SCH_REFERENCE_LIST components;
|
||||||
|
editFrame->GetCurrentSheet().GetComponents( components );
|
||||||
|
|
||||||
if( componentRef.GetRef() == thisRef && componentRef.GetUnit() != thisUnit )
|
for( unsigned i = 0; i < components.GetCount(); i++ )
|
||||||
{
|
{
|
||||||
SCH_COMPONENT* otherUnit = componentRef.GetComp();
|
SCH_REFERENCE componentRef = components[i];
|
||||||
editFrame->SaveCopyInUndoList( otherUnit, UR_CHANGED, true /* append */);
|
|
||||||
otherUnit->GetField( fieldType )->SetText( m_text );
|
if( componentRef.GetRef() == thisRef && componentRef.GetUnit() != thisUnit )
|
||||||
editFrame->RefreshItem( otherUnit );
|
{
|
||||||
|
SCH_COMPONENT* otherUnit = componentRef.GetComp();
|
||||||
|
editFrame->SaveCopyInUndoList( otherUnit, UR_CHANGED, true /* append */);
|
||||||
|
otherUnit->GetField( fieldType )->SetText( m_text );
|
||||||
|
editFrame->RefreshItem( otherUnit );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue