From 4ef627edb97883f272172a6898cb3085433985cc Mon Sep 17 00:00:00 2001 From: jean-pierre charras <jp.charras@wanadoo.fr> Date: Sat, 8 Mar 2025 16:36:49 +0100 Subject: [PATCH] GERBER_PLOTTER: fix missing separator (comma) after ADDxxOutlinexP It was missing after commit 2cdc1ed8 --- common/plotters/GERBER_plotter.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common/plotters/GERBER_plotter.cpp b/common/plotters/GERBER_plotter.cpp index ac82333c90..4de5037a56 100644 --- a/common/plotters/GERBER_plotter.cpp +++ b/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