Formatting.

This commit is contained in:
Jeff Young 2024-06-05 12:07:28 +01:00
parent 10922a194c
commit 9b8f1109e6
1 changed files with 1 additions and 3 deletions

View File

@ -606,13 +606,11 @@ void PCB_IO_IPC2581::addKnockoutText( wxXmlNode* aContentNode, PCB_TEXT* aText )
{
SHAPE_POLY_SET finalPoly;
aText->TransformTextToPolySet( finalPoly, 0, ARC_HIGH_DEF,
ERROR_INSIDE );
aText->TransformTextToPolySet( finalPoly, 0, ARC_HIGH_DEF, ERROR_INSIDE );
finalPoly.Fracture( SHAPE_POLY_SET::PM_FAST );
for( int ii = 0; ii < finalPoly.OutlineCount(); ++ii )
addContourNode( aContentNode, finalPoly, ii );
}