Formatting and a bit of cleanup.

This commit is contained in:
Jeff Young
2022-10-21 18:41:39 +01:00
parent d16b23d16e
commit ce2dbdec75
7 changed files with 31 additions and 59 deletions
+2 -2
View File
@@ -738,8 +738,8 @@ void BRDITEMS_PLOTTER::PlotFootprintShape( const FP_SHAPE* aShape )
for( int jj = 0; jj < tmpPoly.OutlineCount(); ++jj )
{
SHAPE_LINE_CHAIN &poly = tmpPoly.Outline( jj );
m_plotter->PlotPoly( poly, aShape->IsFilled() ?
FILL_T::FILLED_SHAPE : FILL_T::NO_FILL,
m_plotter->PlotPoly( poly, aShape->IsFilled() ? FILL_T::FILLED_SHAPE
: FILL_T::NO_FILL,
thickness, &gbr_metadata );
}
}