Deconflict hotkey for Route from Other End

Fixes https://gitlab.com/kicad/code/kicad/-/issues/16415
This commit is contained in:
Jon Evans 2024-02-11 10:58:38 -05:00
parent ec2cd99405
commit e9be95741b
1 changed files with 1 additions and 1 deletions

View File

@ -2351,7 +2351,7 @@ TOOL_ACTION PCB_ACTIONS::routerUndoLastSegment( TOOL_ACTION_ARGS()
TOOL_ACTION PCB_ACTIONS::routerContinueFromEnd( TOOL_ACTION_ARGS()
.Name( "pcbnew.InteractiveRouter.ContinueFromEnd" )
.Scope( AS_CONTEXT )
.DefaultHotkey( 'E' )
.DefaultHotkey( MD_CTRL + 'E' )
.FriendlyName( _( "Route From Other End" ) )
.Tooltip( _( "Commits current segments and starts next segment from nearest ratsnest end." ) ) );