Fix missing call to ClearArcs()

This commit is contained in:
jean-pierre charras 2021-08-09 09:16:04 +02:00
parent a90656900a
commit 69322a18e7
1 changed files with 5 additions and 1 deletions

View File

@ -1232,7 +1232,11 @@ bool ZONE::BuildSmoothedPoly( SHAPE_POLY_SET& aSmoothedPoly, PCB_LAYER_ID aLayer
}
for( ZONE* zone : interactingZones )
aSmoothedPoly.BooleanAdd( *zone->Outline(), SHAPE_POLY_SET::PM_FAST );
{
SHAPE_POLY_SET flattened_outline = *zone->Outline();
flattened_outline.ClearArcs();
aSmoothedPoly.BooleanAdd( flattened_outline, SHAPE_POLY_SET::PM_FAST );
}
if( aBoardOutline )
{