Browse Source

schematic: fix missing actions strings and hotkey conflict

Fixes: https://gitlab.com/kicad/code/kicad/-/issues/17694
(cherry picked from commit 5ed80a08b8)

Fixes https://gitlab.com/kicad/code/kicad/-/issues/18748
8.0
Mike Williams 1 year ago
committed by Seth Hillbrand
parent
commit
8c3bcade1c
  1. 2
      eeschema/tools/ee_actions.cpp

2
eeschema/tools/ee_actions.cpp

@ -111,7 +111,7 @@ TOOL_ACTION EE_ACTIONS::selectNode( TOOL_ACTION_ARGS()
TOOL_ACTION EE_ACTIONS::selectConnection( TOOL_ACTION_ARGS()
.Name( "eeschema.InteractiveSelection.SelectConnection" )
.Scope( AS_GLOBAL )
.DefaultHotkey( MD_ALT + '4' )
.DefaultHotkey( MD_CTRL + '4' )
.LegacyHotkeyName( "Select Connection" )
.FriendlyName( _( "Select Connection" ) )
.Tooltip( _( "Select a complete connection" ) )

Loading…
Cancel
Save