hotkeys: fix overlapping use of S

Partially fixes https://gitlab.com/kicad/code/kicad/-/issues/18201
This commit is contained in:
Mike Williams 2024-09-18 12:16:25 -04:00
parent 5ed80a08b8
commit 01e6b6a9f9
2 changed files with 3 additions and 3 deletions

View File

@ -677,7 +677,7 @@ TOOL_ACTION EE_ACTIONS::mirrorH( TOOL_ACTION_ARGS()
TOOL_ACTION EE_ACTIONS::swap( TOOL_ACTION_ARGS()
.Name( "eeschema.InteractiveEdit.swap" )
.Scope( AS_GLOBAL )
.DefaultHotkey( 'S' )
.DefaultHotkey( MD_ALT + 'S' )
.FriendlyName( _( "Swap" ) )
.Tooltip( _( "Swap positions of selected items" ) )
.Icon( BITMAPS::swap ) );

View File

@ -552,9 +552,9 @@ TOOL_ACTION PCB_ACTIONS::mirrorV( TOOL_ACTION_ARGS()
TOOL_ACTION PCB_ACTIONS::swap( TOOL_ACTION_ARGS()
.Name( "pcbnew.InteractiveEdit.swap" )
.Scope( AS_GLOBAL )
.DefaultHotkey( 'S' )
.DefaultHotkey( MD_ALT + 'S' )
.FriendlyName( _( "Swap" ) )
.Tooltip( _( "Swap positiona of selected items" ) )
.Tooltip( _( "Swap positions of selected items" ) )
.Icon( BITMAPS::swap ) );
TOOL_ACTION PCB_ACTIONS::packAndMoveFootprints( TOOL_ACTION_ARGS()