Browse Source

Fix tooltip for Fill all vias.

pcb_db
Alex Shvartzkop 11 months ago
parent
commit
c4091fc7ad
  1. 2
      kicad/cli/command_pcb_export_3d.cpp
  2. 2
      pcbnew/dialogs/dialog_export_step_base.cpp
  3. 2
      pcbnew/dialogs/dialog_export_step_base.fbp

2
kicad/cli/command_pcb_export_3d.cpp

@ -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 )

2
pcbnew/dialogs/dialog_export_step_base.cpp

@ -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 );

2
pcbnew/dialogs/dialog_export_step_base.fbp

@ -1559,7 +1559,7 @@
<property name="style"></property>
<property name="subclass"></property>
<property name="toolbar_pane">0</property>
<property name="tooltip">Don&apos;t cut via holes in copper layers.</property>
<property name="tooltip">Don&apos;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…
Cancel
Save