Hotkeys: fix multiple assignment of N key
Fixes: https://gitlab.com/kicad/code/kicad/-/issues/16376
This commit is contained in:
parent
2ee75b1aec
commit
fc903592ed
|
@ -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 ) );
|
||||
|
|
|
@ -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" ) )
|
||||
|
|
Loading…
Reference in New Issue