Fix handling of dimensions in footprint updater

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16448
This commit is contained in:
Jon Evans 2023-12-26 14:08:39 -05:00
parent 20ee45edbe
commit 7d25675e2b
1 changed files with 5 additions and 1 deletions

View File

@ -2284,6 +2284,10 @@ void PCB_EDIT_FRAME::ExchangeFootprint( FOOTPRINT* aExisting, FOOTPRINT* aNew,
if( srcItem )
{
// Dimensions have PCB_TEXT base but are not treated like texts in the updater
if( dynamic_cast<PCB_DIMENSION_BASE*>( srcItem ) )
continue;
PCB_TEXT* destItem = getMatchingTextItem( srcItem, aNew );
if( destItem )
@ -2293,7 +2297,7 @@ void PCB_EDIT_FRAME::ExchangeFootprint( FOOTPRINT* aExisting, FOOTPRINT* aNew,
}
else if( !deleteExtraTexts )
{
aNew->Add( new PCB_TEXT( *srcItem ) );
aNew->Add( static_cast<BOARD_ITEM*>( srcItem->Clone() ) );
}
}
}