Add missing drill precision arg integer specifier

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16508
This commit is contained in:
Marek Roszko 2024-01-03 21:29:02 -05:00
parent 9195de9849
commit 58af6b8dea
1 changed files with 2 additions and 1 deletions

View File

@ -99,7 +99,8 @@ CLI::PCB_EXPORT_DRILL_COMMAND::PCB_EXPORT_DRILL_COMMAND() : PCB_EXPORT_BASE_COMM
m_argParser.add_argument( ARG_GERBER_PRECISION ) m_argParser.add_argument( ARG_GERBER_PRECISION )
.help( UTF8STDSTR( _( "Precision of Gerber coordinates (5 or 6)" ) ) ) .help( UTF8STDSTR( _( "Precision of Gerber coordinates (5 or 6)" ) ) )
.default_value( 6 ); .default_value( 6 )
.scan<'i', int>();
} }