Gerber export X3: fix an incorrect keyword ("route" must be "rout")
This commit is contained in:
parent
1e66129218
commit
60806edac0
|
@ -438,7 +438,7 @@ const wxString GENDRILL_WRITER_BASE::BuildFileFunctionAttributeString(
|
||||||
else if( hasDrill )
|
else if( hasDrill )
|
||||||
text << wxT( ",Drill" );
|
text << wxT( ",Drill" );
|
||||||
else if( hasOblong )
|
else if( hasOblong )
|
||||||
text << wxT( ",Route" );
|
text << wxT( ",Rout" );
|
||||||
|
|
||||||
// else: empty file.
|
// else: empty file.
|
||||||
|
|
||||||
|
|
|
@ -158,7 +158,7 @@ int GERBER_WRITER::createDrillFile( wxString& aFullFilename, bool aIsNpth,
|
||||||
plotter.SetCreator( wxT( "PCBNEW" ) );
|
plotter.SetCreator( wxT( "PCBNEW" ) );
|
||||||
|
|
||||||
// Add the standard X2 FileFunction for drill files
|
// Add the standard X2 FileFunction for drill files
|
||||||
// %TF.FileFunction,Plated[NonPlated],layer1num,layer2num,PTH[NPTH][Blind][Buried],Drill[Route][Mixed]*%
|
// %TF.FileFunction,Plated[NonPlated],layer1num,layer2num,PTH[NPTH][Blind][Buried],Drill[Rout][Mixed]*%
|
||||||
wxString text = BuildFileFunctionAttributeString( aLayerPair,
|
wxString text = BuildFileFunctionAttributeString( aLayerPair,
|
||||||
aIsNpth ? TYPE_FILE::NPTH_FILE
|
aIsNpth ? TYPE_FILE::NPTH_FILE
|
||||||
: TYPE_FILE::PTH_FILE );
|
: TYPE_FILE::PTH_FILE );
|
||||||
|
|
Loading…
Reference in New Issue