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:
parent
dbb7859b7c
commit
4410df50a8
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue