Fix issues in Gerber attributes

This commit is contained in:
jean-pierre charras
2019-10-19 11:26:29 +02:00
parent b9202e81bc
commit f892ebbb49
4 changed files with 45 additions and 7 deletions
+2 -2
View File
@@ -574,11 +574,11 @@ void GERBER_PLOTTER::PlotGerberRegion( const std::vector< wxPoint >& aCornerList
{
if( m_useX2format )
{
fputs( "%TD,.AperFunction*%\n", outputFile );
fputs( "%TD.AperFunction*%\n", outputFile );
}
else
{
fputs( "G04 #@! TD,.AperFunction*\n", outputFile );
fputs( "G04 #@! TD.AperFunction*\n", outputFile );
}
}
}