Hotkeys: fix multiple assignment of N key

Fixes: https://gitlab.com/kicad/code/kicad/-/issues/16376
This commit is contained in:
Mike Williams 2023-12-18 11:08:38 -05:00
parent 2ee75b1aec
commit fc903592ed
2 changed files with 1 additions and 2 deletions

View File

@ -164,7 +164,7 @@ TOOL_ACTION EE_ACTIONS::saveLibraryAs( TOOL_ACTION_ARGS()
TOOL_ACTION EE_ACTIONS::newSymbol( TOOL_ACTION_ARGS()
.Name( "eeschema.SymbolLibraryControl.newSymbol" )
.Scope( AS_GLOBAL )
.DefaultHotkey( 'N' )
.DefaultHotkey( MD_CTRL + 'N' )
.FriendlyName( _( "New Symbol..." ) )
.Tooltip( _( "Create a new symbol" ) )
.Icon( BITMAPS::new_component ) );

View File

@ -221,7 +221,6 @@ TOOL_ACTION GERBVIEW_ACTIONS::polygonsDisplayOutlines( TOOL_ACTION_ARGS()
TOOL_ACTION GERBVIEW_ACTIONS::negativeObjectDisplay( TOOL_ACTION_ARGS()
.Name( "gerbview.Control.negativeObjectDisplay" )
.Scope( AS_GLOBAL )
.DefaultHotkey( 'N' )
.LegacyHotkeyName( "Gbr Negative Obj Display Mode" )
.FriendlyName( _( "Ghost Negative Objects" ) )
.Tooltip( _( "Show negative objects in ghost color" ) )