diff options
author | Drashna Jaelre <drashna@live.com> | 2019-07-16 01:21:52 -0700 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-07-16 01:21:52 -0700 |
commit | f6651424a022d6209c39981f0cf45fd87660578c (patch) | |
tree | 632bd844ea78c93cd20a3a34e8fc6a96eb0b5311 /tmk_core | |
parent | 29e9caa82bdfe898dd7fca82fcecf0cae2374859 (diff) | |
download | qmk_firmware-f6651424a022d6209c39981f0cf45fd87660578c.tar.gz qmk_firmware-f6651424a022d6209c39981f0cf45fd87660578c.zip |
Make Caps Lock delay more reasonable (#6199)
* Make Caps Lock delay more reasonable
* Update documentation
* Update docs/config_options.md
Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com>
* Update docs/config_options.md
Co-Authored-By: Konstantin Đorđević <vomindoraan@gmail.com>
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c index 6a560229a6..285786cb7c 100644 --- a/tmk_core/common/action.c +++ b/tmk_core/common/action.c @@ -45,7 +45,7 @@ int retro_tapping_counter = 0; #endif #ifndef TAP_HOLD_CAPS_DELAY -# define TAP_HOLD_CAPS_DELAY 200 +# define TAP_HOLD_CAPS_DELAY 80 #endif /** \brief Called to execute an action. * |