mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-04-11 11:20:09 +00:00
Fix tooltip for Fill all vias.
This commit is contained in:
parent
fbbb642c0c
commit
c4091fc7ad
kicad/cli
pcbnew/dialogs
@ -162,7 +162,7 @@ CLI::PCB_EXPORT_3D_COMMAND::PCB_EXPORT_3D_COMMAND( const std::string& aNa
|
||||
.flag();
|
||||
|
||||
m_argParser.add_argument( ARG_FILL_ALL_VIAS )
|
||||
.help( UTF8STDSTR( _( "Don't cut via holes in copper layers." ) ) )
|
||||
.help( UTF8STDSTR( _( "Don't cut via holes in conductor layers." ) ) )
|
||||
.flag();
|
||||
|
||||
m_argParser.add_argument( ARG_MIN_DISTANCE )
|
||||
|
@ -140,7 +140,7 @@ DIALOG_EXPORT_STEP_BASE::DIALOG_EXPORT_STEP_BASE( wxWindow* parent, wxWindowID i
|
||||
sbConductorOptions->Add( m_cbFuseShapes, 0, wxBOTTOM|wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
m_cbFillAllVias = new wxCheckBox( sbConductorOptions->GetStaticBox(), wxID_ANY, _("Fill all vias"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
m_cbFillAllVias->SetToolTip( _("Don't cut via holes in copper layers.") );
|
||||
m_cbFillAllVias->SetToolTip( _("Don't cut via holes in conductor layers.") );
|
||||
|
||||
sbConductorOptions->Add( m_cbFillAllVias, 0, wxBOTTOM|wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
|
@ -1559,7 +1559,7 @@
|
||||
<property name="style"></property>
|
||||
<property name="subclass"></property>
|
||||
<property name="toolbar_pane">0</property>
|
||||
<property name="tooltip">Don't cut via holes in copper layers.</property>
|
||||
<property name="tooltip">Don't cut via holes in conductor layers.</property>
|
||||
<property name="validator_data_type"></property>
|
||||
<property name="validator_style">wxFILTER_NONE</property>
|
||||
<property name="validator_type">wxDefaultValidator</property>
|
||||
|
Loading…
Reference in New Issue
Block a user