Browse Source

PNS: disable smart pads in walkaround if posture is forced

Fixes https://gitlab.com/kicad/code/kicad/-/issues/7710
6.0.7
Jon Evans 5 years ago
parent
commit
d269778cd4
  1. 2
      pcbnew/router/pns_line_placer.cpp

2
pcbnew/router/pns_line_placer.cpp

@ -483,7 +483,7 @@ bool LINE_PLACER::rhWalkOnly( const VECTOR2I& aP, LINE& aNewHead )
break;
}
if( Settings().SmartPads() )
if( Settings().SmartPads() && !m_mouseTrailTracer.IsManuallyForced() )
effort |= OPTIMIZER::SMART_PADS;
if( wr.statusCw == WALKAROUND::STUCK || wr.statusCcw == WALKAROUND::STUCK )

Loading…
Cancel
Save