PNS: Remove code that broke width changes during placement

Fixes https://gitlab.com/kicad/code/kicad/-/issues/8334
This commit is contained in:
Jon Evans 2021-06-06 19:21:42 -04:00
parent 5bb6f8c5e3
commit 6cb8154ec0
1 changed files with 0 additions and 7 deletions

View File

@ -1539,13 +1539,6 @@ void LINE_PLACER::simplifyNewLine( NODE* aNode, LINKED_ITEM* aLatest )
void LINE_PLACER::UpdateSizes( const SIZES_SETTINGS& aSizes )
{
// initPlacement will kill the tail, don't do that unless the track size has changed
if( !m_idle && aSizes.TrackWidth() != m_sizes.TrackWidth() )
{
m_sizes = aSizes;
initPlacement();
}
m_sizes = aSizes;
if( !m_idle )