From 6d5298792869ef0198b3202a6fb77c15109c901b Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 25 Jul 2017 11:50:24 +0200 Subject: [PATCH] Gerber files creation: fix an incorrect structured comment ('*' was missing at the end of line) --- pcbnew/pcbplot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/pcbplot.cpp b/pcbnew/pcbplot.cpp index 98f5506a54..6ddcb50129 100644 --- a/pcbnew/pcbplot.cpp +++ b/pcbnew/pcbplot.cpp @@ -362,7 +362,7 @@ void AddGerberX2Header( PLOTTER * aPlotter, if( aBoard->GetPlotOptions().GetUseAuxOrigin() && auxOrigin.x && auxOrigin.y ) registration_id.Printf( "PX%xPY%x", auxOrigin.x, auxOrigin.y ); - text.Printf( "%%TF.SameCoordinates,%s%%", registration_id.GetData() ); + text.Printf( "%%TF.SameCoordinates,%s*%%", registration_id.GetData() ); aPlotter->AddLineToHeader( makeStringCompatX1( text, aUseX1CompatibilityMode ) ); }