Browse Source

PNS: Process holes as solids in shoveIteration

Fixes https://gitlab.com/kicad/code/kicad/-/issues/12873
7.0
Jon Evans 2 years ago
parent
commit
2075a99c9b
  1. 3
      pcbnew/router/pns_shove.cpp

3
pcbnew/router/pns_shove.cpp

@ -1492,9 +1492,10 @@ SHOVE::SHOVE_STATUS SHOVE::shoveIteration( int aIter )
break;
case ITEM::HOLE_T:
case ITEM::SOLID_T:
PNS_DBG( Dbg(), BeginGroup, wxString::Format( "iter %d: walk-solid ", aIter ), 0);
st = onCollidingSolid( currentLine, (SOLID*) ni, *nearest );
st = onCollidingSolid( currentLine, ni, *nearest );
PNS_DBGN( Dbg(), EndGroup );

Loading…
Cancel
Save