Add missing drill precision arg integer specifier
Fixes https://gitlab.com/kicad/code/kicad/-/issues/16508
This commit is contained in:
parent
9195de9849
commit
58af6b8dea
|
@ -99,7 +99,8 @@ 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( 6 )
|
||||
.scan<'i', int>();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue