diff --git a/pcbnew/tools/edit_tool_move_fct.cpp b/pcbnew/tools/edit_tool_move_fct.cpp index f08efb2a41..446b77c368 100644 --- a/pcbnew/tools/edit_tool_move_fct.cpp +++ b/pcbnew/tools/edit_tool_move_fct.cpp @@ -626,10 +626,22 @@ bool EDIT_TOOL::doMoveSelection( const TOOL_EVENT& aEvent, BOARD_COMMIT* aCommit } else { - for( BOARD_ITEM* item : sel_items ) + if( showCourtyardConflicts ) { - if( showCourtyardConflicts && item->Type() == PCB_FOOTPRINT_T ) - drc_on_move->m_FpInMove.push_back( static_cast( item ) ); + std::vector& FPs = drc_on_move->m_FpInMove; + + for( BOARD_ITEM* item : sel_items ) + { + if( item->Type() == PCB_FOOTPRINT_T ) + FPs.push_back( static_cast( item ) ); + + item->RunOnDescendants( + [&]( BOARD_ITEM* descendent ) + { + if( descendent->Type() == PCB_FOOTPRINT_T ) + FPs.push_back( static_cast( descendent ) ); + } ); + } } m_cursor = grid.BestDragOrigin( originalCursorPos, sel_items,