CLI: set default Gerber drill format to 4.5 mm.

For compatibility with fabs.
This commit is contained in:
Alex Shvartzkop 2023-12-04 22:29:02 +03:00
parent 34b30d2586
commit a06d93a383
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ CLI::PCB_EXPORT_DRILL_COMMAND::PCB_EXPORT_DRILL_COMMAND() : PCB_EXPORT_BASE_COMM
m_argParser.add_argument( ARG_GERBER_PRECISION )
.help( UTF8STDSTR( _( "Precision of Gerber coordinates (5 or 6)" ) ) )
.default_value( 6 );
.default_value( 5 );
}