From a0f2435ccdfbdb1178b5d77db49e081ca805665d Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Tue, 18 Aug 2020 22:42:21 -0400 Subject: [PATCH] Clarify net selection tooltip Fixes https://gitlab.com/kicad/code/kicad/-/issues/5242 --- pcbnew/widgets/appearance_controls.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pcbnew/widgets/appearance_controls.cpp b/pcbnew/widgets/appearance_controls.cpp index ec991369b1..c803107510 100644 --- a/pcbnew/widgets/appearance_controls.cpp +++ b/pcbnew/widgets/appearance_controls.cpp @@ -1316,7 +1316,8 @@ void APPEARANCE_CONTROLS::rebuildNets() wxString::Format( _( "Highlight %s" ), netName ), wxEmptyString, wxITEM_NORMAL ) ); menu.Append( new wxMenuItem( &menu, ID_SELECT_NET, - wxString::Format( _( "Select %s" ), netName ), + wxString::Format( _( "Select tracks and vias in %s" ), + netName ), wxEmptyString, wxITEM_NORMAL ) ); menu.AppendSeparator(); @@ -1401,7 +1402,8 @@ void APPEARANCE_CONTROLS::rebuildNets() wxString::Format( _( "Highlight nets in %s" ), name ), wxEmptyString, wxITEM_NORMAL ) ); menu.Append( new wxMenuItem( &menu, ID_SELECT_NET, - wxString::Format( _( "Select nets in %s" ), name ), + wxString::Format( _( "Select tracks and vias in %s" ), + name ), wxEmptyString, wxITEM_NORMAL ) ); menu.AppendSeparator();