diff --git a/pcbnew/pcb_text.cpp b/pcbnew/pcb_text.cpp index a7379c5d75..43f5fc65c4 100644 --- a/pcbnew/pcb_text.cpp +++ b/pcbnew/pcb_text.cpp @@ -352,7 +352,10 @@ void PCB_TEXT::TransformTextToPolySet( SHAPE_POLY_SET& aBuffer, int aClearance, else { if( aClearance > 0 ) - textShape.Inflate( aClearance, aClearance ); + { + const int arc2segmentCount = 16; + textShape.Inflate( aClearance, arc2segmentCount ); + } aBuffer.Append( textShape ); }