From 19b484410228931f07b43c6d4b45ee2a374431a9 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 10 Jul 2022 20:19:48 -0600 Subject: [PATCH] Avoid OSX system shortcut. CHANGED toggle net highlight from ctrl-` to opt-`. Fixes https://gitlab.com/kicad/code/kicad/issues/10160 --- pcbnew/tools/pcb_actions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/tools/pcb_actions.cpp b/pcbnew/tools/pcb_actions.cpp index 6fff02cb0c..322e5cb9aa 100644 --- a/pcbnew/tools/pcb_actions.cpp +++ b/pcbnew/tools/pcb_actions.cpp @@ -755,7 +755,7 @@ TOOL_ACTION PCB_ACTIONS::clearHighlight( "pcbnew.EditorControl.clearHighlight", TOOL_ACTION PCB_ACTIONS::toggleNetHighlight( "pcbnew.EditorControl.toggleNetHighlight", AS_GLOBAL, - MD_CTRL + '`', "", + MD_ALT + '`', "", _( "Toggle Net Highlight" ), _( "Toggle net highlighting" ), BITMAPS::net_highlight );