Browse Source

BOARD::PadDelete() should update connectivity

Fixes: lp:1783528
* https://bugs.launchpad.net/kicad/+bug/1783528
pull/13/head
Tomasz Wlostowski 7 years ago
parent
commit
07d56a2e32
  1. 1
      pcbnew/class_board.cpp

1
pcbnew/class_board.cpp

@ -1848,6 +1848,7 @@ void BOARD::GetSortedPadListByXthenYCoord( std::vector<D_PAD*>& aVector, int aNe
void BOARD::PadDelete( D_PAD* aPad )
{
GetConnectivity()->Remove( aPad );
aPad->DeleteStructure();
}

Loading…
Cancel
Save