From ec7a5d3d715cf19756859c58faaa19702de61925 Mon Sep 17 00:00:00 2001 From: Richard Baptist Date: Fri, 14 Jun 2019 10:38:49 +0200 Subject: [PATCH] Extend range of tappable keycodes --- tmk_core/common/action.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 6a560229a69..9436c5fcef8 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -952,7 +952,7 @@ bool is_tap_action(action_t action) case ACT_LAYER_TAP: case ACT_LAYER_TAP_EXT: switch (action.layer_tap.code) { - case 0x00 ... 0xdf: + case 0x00 ... 0xE7: case OP_TAP_TOGGLE: case OP_ONESHOT: return true; @@ -960,7 +960,7 @@ bool is_tap_action(action_t action) return false; case ACT_SWAP_HANDS: switch (action.swap.code) { - case 0x00 ... 0xdf: + case 0x00 ... 0xE7: case OP_SH_TAP_TOGGLE: return true; }