diff options
Diffstat (limited to 'common/action.c')
-rw-r--r-- | common/action.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/common/action.c b/common/action.c index 485abf81e3..e6938f5a23 100644 --- a/common/action.c +++ b/common/action.c @@ -128,6 +128,17 @@ void process_action(keyrecord_t *record) } break; #endif + case MODS_TAP_TOGGLE: + if (event.pressed) { + if (tap_count <= TAPPING_TOGGLE) { + register_mods(mods); + } + } else { + if (tap_count < TAPPING_TOGGLE) { + unregister_mods(mods); + } + } + break; default: if (event.pressed) { if (tap_count > 0) { |