From 007b3bdbccbff9f4705bf08104726af0232fc3a9 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Mon, 13 Dec 2021 16:16:33 +0100 Subject: [PATCH] Hotkeys help: fix incorrect modifiers. Fixes #9951 https://gitlab.com/kicad/code/kicad/issues/9951 --- common/hotkey_store.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/hotkey_store.cpp b/common/hotkey_store.cpp index 88dcab7a17..9b562aeb2f 100644 --- a/common/hotkey_store.cpp +++ b/common/hotkey_store.cpp @@ -44,8 +44,8 @@ static PSEUDO_ACTION* g_gesturePseudoActions[] = { new PSEUDO_ACTION( _( "Pan Up/Down" ), MD_SHIFT + PSEUDO_WXK_WHEEL ), new PSEUDO_ACTION( _( "Finish Drawing" ), PSEUDO_WXK_DBLCLICK ), new PSEUDO_ACTION( _( "Add to Selection" ), MD_SHIFT + PSEUDO_WXK_CLICK ), - new PSEUDO_ACTION( _( "Highlight Net" ), MD_ALT + PSEUDO_WXK_CLICK ), - new PSEUDO_ACTION( _( "Remove from Selection" ), MD_SHIFT + MD_ALT + PSEUDO_WXK_CLICK ), + new PSEUDO_ACTION( _( "Highlight Net" ), MD_CTRL + PSEUDO_WXK_CLICK ), + new PSEUDO_ACTION( _( "Remove from Selection" ), MD_SHIFT + MD_CTRL + PSEUDO_WXK_CLICK ), new PSEUDO_ACTION( _( "Ignore Grid Snaps" ), MD_CTRL ), new PSEUDO_ACTION( _( "Ignore Other Snaps" ), MD_SHIFT ), };