diff options
author | Nick Choi <iinikchi@gmail.com> | 2017-05-23 13:13:23 -0400 |
---|---|---|
committer | Nick Choi <iinikchi@gmail.com> | 2017-05-23 13:13:23 -0400 |
commit | 0e174fcb48471b6af79f1456d65edf7c22d8b903 (patch) | |
tree | 0aee5e6db3c2c54acdfaac6ea0feeed3520d43d6 /tmk_core/common/action.c | |
parent | 3ed2147a888401ef31a008db02a4ef8bd25d4380 (diff) | |
parent | ec86fac6eee6e5148bc491497aadf2abed09a8ea (diff) |
Merge branch 'master' of https://github.com/nikchi/qmk_firmware
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r-- | tmk_core/common/action.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 8640dfab35..a534f818ec 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -26,6 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "action_macro.h" #include "action_util.h" #include "action.h" +#include "wait.h" #ifdef DEBUG_ACTION #include "debug.h" @@ -438,6 +439,9 @@ void process_action(keyrecord_t *record, action_t action) } else { if (tap_count > 0) { dprint("KEYMAP_TAP_KEY: Tap: unregister_code\n"); + if (action.layer_tap.code == KC_CAPS) { + wait_ms(80); + } unregister_code(action.layer_tap.code); } else { dprint("KEYMAP_TAP_KEY: No tap: Off on release\n"); |