Browse Source

GERBER_PLOTTER: fix missing separator (comma) after ADDxxOutlinexP

It was missing after commit 2cdc1ed8
revert-0c36e162
jean-pierre charras 7 months ago
parent
commit
4ef627edb9
  1. 3
      common/plotters/GERBER_plotter.cpp

3
common/plotters/GERBER_plotter.cpp

@ -752,6 +752,9 @@ void GERBER_PLOTTER::writeApertureList()
break;
}
// Add separator after aperture macro name
fmt::print( m_outputFile, "," );
// Output all corners (should be 4 to 8 corners)
// Remember: the Y coordinate must be negated, due to the fact in Pcbnew
// the Y axis is from top to bottom

Loading…
Cancel
Save