diff options
Diffstat (limited to 'common/action.c')
-rw-r--r-- | common/action.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/action.c b/common/action.c index ec8eeae7bc..1f15bd0918 100644 --- a/common/action.c +++ b/common/action.c @@ -518,7 +518,12 @@ bool is_tap_key(keypos_t key) case ACT_RMODS_TAP: case ACT_LAYER_TAP: case ACT_LAYER_TAP_EXT: - return true; + switch (action.layer_tap.code) { + case 0x00 ... 0xdf: + case OP_TAP_TOGGLE: + return true; + } + return false; case ACT_MACRO: case ACT_FUNCTION: if (action.func.opt & FUNC_TAP) { return true; } |