Comment 4 for bug 1516244

Revision history for this message
Chris Gibson (chris-w-gibson) wrote :

I believe this line...

429 int linewidth = m_Width + (2 * aClearanceValue);

in TransformShapeWithClearanceToPolygon.cpp to be the culprit.

Changing it to...

429 int linewidth = 2 * aClearanceValue;

Fixes the problem. Others may disagree but I do see it as a problem not a feature.