Remove default hotkey for toggle zone display

It is too easy to accidentally hide your zones and the 'A' hotkey is
intuitively mapped to Add Footprint, to match Add Symbol in eeschema.

This won't change current hotkey customizations but will help prevent
future user error.  Users can still map the action to a hotkey if the
new toggle is useful to their workflow
This commit is contained in:
Seth Hillbrand 2022-01-10 11:48:26 -08:00
parent 4907b90215
commit 4d899d7820
1 changed files with 2 additions and 2 deletions

View File

@ -653,7 +653,7 @@ TOOL_ACTION PCB_ACTIONS::placeTarget( "pcbnew.EditorControl.placeTarget",
TOOL_ACTION PCB_ACTIONS::placeFootprint( "pcbnew.EditorControl.placeFootprint",
AS_GLOBAL,
'O', LEGACY_HK_NAME( "Add Footprint" ),
'A', LEGACY_HK_NAME( "Add Footprint" ),
_( "Add Footprint" ), _( "Add a footprint" ),
BITMAPS::module, AF_ACTIVATE );
@ -870,7 +870,7 @@ TOOL_ACTION PCB_ACTIONS::zoneDisplayTriangulated( "pcbnew.Control.zoneDisplayTes
TOOL_ACTION PCB_ACTIONS::zoneDisplayToggle( "pcbnew.Control.zoneDisplayToggle",
AS_GLOBAL,
'A', "",
0, "",
_( "Toggle Zone Display" ),
_( "Cycle between showing zone fills and just their outlines" ),
BITMAPS::show_zone );