CLI: fix strings in 3D export.
This commit is contained in:
parent
eb1fbadc12
commit
0afc516107
|
@ -107,12 +107,12 @@ CLI::PCB_EXPORT_3D_COMMAND::PCB_EXPORT_3D_COMMAND( const std::string& aNa
|
||||||
.default_value( false );
|
.default_value( false );
|
||||||
|
|
||||||
m_argParser.add_argument( ARG_INCLUDE_TRACKS )
|
m_argParser.add_argument( ARG_INCLUDE_TRACKS )
|
||||||
.help( UTF8STDSTR( _( "Export tracks (time consuming)" ) ) )
|
.help( UTF8STDSTR( _( "Export tracks" ) ) )
|
||||||
.implicit_value( true )
|
.implicit_value( true )
|
||||||
.default_value( false );
|
.default_value( false );
|
||||||
|
|
||||||
m_argParser.add_argument( ARG_INCLUDE_ZONES )
|
m_argParser.add_argument( ARG_INCLUDE_ZONES )
|
||||||
.help( UTF8STDSTR( _( "Export zones (time consuming)" ) ) )
|
.help( UTF8STDSTR( _( "Export zones" ) ) )
|
||||||
.implicit_value( true )
|
.implicit_value( true )
|
||||||
.default_value( false );
|
.default_value( false );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue