Remove layer check that prevents synthetic layer drawing.

In this particular case it was LAYER_PAD_FR.

Fixes https://gitlab.com/kicad/code/kicad/issues/5190
This commit is contained in:
Jeff Young 2020-08-15 11:14:58 +01:00
parent dbb7859b7c
commit 4410df50a8
1 changed files with 0 additions and 3 deletions

View File

@ -358,9 +358,6 @@ void DRAWSEGMENT::TransformShapeWithClearanceToPolygon( SHAPE_POLY_SET& aCornerB
int aClearanceValue, int aError,
bool ignoreLineWidth ) const
{
if( aLayer != m_Layer )
return;
int width = ignoreLineWidth ? 0 : m_Width;
width += 2 * aClearanceValue;