Update pin selection flags from SCH_SYMBOL::UpdatePins().
Fixes https://gitlab.com/kicad/code/kicad/-/issues/16281
This commit is contained in:
parent
a161829f86
commit
88760f5c0e
|
@ -436,6 +436,14 @@ void SCH_SYMBOL::UpdatePins()
|
|||
++it1;
|
||||
}
|
||||
}
|
||||
|
||||
// If the symbol is selected, then its pins are selected.
|
||||
if( IsSelected() )
|
||||
{
|
||||
for( std::unique_ptr<SCH_PIN>& pin : m_pins )
|
||||
pin->SetSelected();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue