Revert "Don't double-check all zones."

This reverts commit b842e4556d.

When a specific zone is tested, we need to iterate over all other zones
on the board.
This commit is contained in:
Seth Hillbrand 2018-09-25 08:48:22 -07:00
parent ee465fb23c
commit b1d44ed415
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ int DRC::TestZoneToZoneOutline( ZONE_CONTAINER* aZone, bool aCreateMarkers )
if( aZone && ( aZone != zoneRef) )
continue;
for( int ia2 = ia + 1; ia2 < board->GetAreaCount(); ia2++ )
for( int ia2 = 0; ia2 < board->GetAreaCount(); ia2++ )
{
ZONE_CONTAINER* zoneToTest = board->GetArea( ia2 );
SHAPE_POLY_SET testSmoothedPoly;