Commit 5c263819 authored by jean-pierre charras's avatar jean-pierre charras

Pcbnew: Fix Bug #1432370 (Solder mask cutouts extended by "Zone min thickness value")

parent 797ff5ee
......@@ -104,7 +104,7 @@ bool ZONE_CONTAINER::BuildFilledSolidAreasPolygons( BOARD* aPcb, CPOLYGONS_LIST*
else
{
int margin = m_ZoneMinThickness / 2;
m_smoothedPoly->m_CornersList.InflateOutline(m_FilledPolysList, margin, true );
m_smoothedPoly->m_CornersList.InflateOutline(m_FilledPolysList, -margin, true );
}
if( m_FillMode ) // if fill mode uses segments, create them:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment