SCH<->PCB: fix pin cross probing
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/16910
This commit is contained in:
parent
9b11dfd4d4
commit
1a91bb369c
|
@ -1970,10 +1970,15 @@ void EE_SELECTION_TOOL::SyncSelection( const std::optional<SCH_SHEET_PATH>& targ
|
||||||
// Perform individual selection of each item before processing the event.
|
// Perform individual selection of each item before processing the event.
|
||||||
for( SCH_ITEM* item : items )
|
for( SCH_ITEM* item : items )
|
||||||
{
|
{
|
||||||
|
SCH_ITEM* parent = dynamic_cast<SCH_ITEM*>( item->GetParent() );
|
||||||
|
|
||||||
// Make sure we only select items on the current screen
|
// Make sure we only select items on the current screen
|
||||||
if( m_frame->GetScreen()->CheckIfOnDrawList( item ) )
|
if( m_frame->GetScreen()->CheckIfOnDrawList( item )
|
||||||
|
|| ( parent && m_frame->GetScreen()->CheckIfOnDrawList( parent ) ) )
|
||||||
|
{
|
||||||
select( item );
|
select( item );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
BOX2I bbox = m_selection.GetBoundingBox();
|
BOX2I bbox = m_selection.GetBoundingBox();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue