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:
parent
ee465fb23c
commit
b1d44ed415
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue