From 1b9893841bc36bde06354ec916f84aff8c4ac1bc Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Sat, 3 Jul 2021 13:36:18 -0400 Subject: [PATCH] Add a tooltip explaining the track width dropdown Fixes https://gitlab.com/kicad/code/kicad/-/issues/8719 --- pcbnew/toolbars_pcb_editor.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcbnew/toolbars_pcb_editor.cpp b/pcbnew/toolbars_pcb_editor.cpp index d1c97c4652..f62d62f423 100644 --- a/pcbnew/toolbars_pcb_editor.cpp +++ b/pcbnew/toolbars_pcb_editor.cpp @@ -522,6 +522,10 @@ void PCB_EDIT_FRAME::ReCreateAuxiliaryToolbar() UpdateTrackWidthSelectBox( m_SelTrackWidthBox ); m_auxiliaryToolBar->AddControl( m_SelTrackWidthBox ); + m_SelTrackWidthBox->SetToolTip( _( "Select the default width for new tracks. Note that this " + "width can be overridden by the board minimum width, or by " + "the width of an existing track if the 'Use Existing Track " + "Width' feature is enabled." ) ); m_auxiliaryToolBar->AddTool( ID_AUX_TOOLBAR_PCB_SELECT_AUTO_WIDTH, wxEmptyString, KiScaledBitmap( BITMAPS::auto_track_width, this ),