Browse Source

Don't allow keepout zones to match no-net tracks.

Fixes: lp:1819250
* https://bugs.launchpad.net/kicad/+bug/1819250
pull/15/head
Jeff Young 7 years ago
parent
commit
867585c1f2
  1. 2
      pcbnew/router/pns_kicad_iface.cpp

2
pcbnew/router/pns_kicad_iface.cpp

@ -822,7 +822,7 @@ bool PNS_KICAD_IFACE::syncZone( PNS::NODE* aWorld, ZONE_CONTAINER* aZone )
std::unique_ptr< PNS::SOLID > solid( new PNS::SOLID );
solid->SetLayer( layer );
solid->SetNet( 0 );
solid->SetNet( -1 );
solid->SetParent( aZone );
solid->SetShape( triShape );
solid->SetRoutable( false );

Loading…
Cancel
Save