Gerber files creation: fix an incorrect structured comment ('*' was missing at the end of line)
This commit is contained in:
parent
2d5607a11d
commit
6d52987928
|
@ -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 ) );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue