FP_SHAPE in pads: always specify fill mode for shapes that can be filled or not.

From Master branch
This commit is contained in:
jean-pierre charras 2022-07-15 17:42:31 +02:00
parent 406dd58002
commit 9c50a9fa4a
1 changed files with 11 additions and 2 deletions

View File

@ -1726,8 +1726,17 @@ void PCB_PLUGIN::format( const PAD* aPad, int aNestLevel ) const
m_out->Print( 0, " (width %s)",
FormatInternalUnits( primitive->GetWidth() ).c_str() );
if( primitive->IsFilled() )
m_out->Print( 0, " (fill yes)" );
// The filled flag represents if a solid fill is present on circles,
// rectangles and polygons
if( ( primitive->GetShape() == SHAPE_T::POLY )
|| ( primitive->GetShape() == SHAPE_T::RECT )
|| ( primitive->GetShape() == SHAPE_T::CIRCLE ) )
{
if( primitive->IsFilled() )
m_out->Print( 0, " (fill yes)" );
else
m_out->Print( 0, " (fill none)" );
}
m_out->Print( 0, ")" );
}