increase timeout for dual mode caps key

master
lucwastiaux 2017-02-01 13:46:00 +08:00
parent f6feee8167
commit 467e284178
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
break;
case DUAL_CAPSLOCK:
if (record->event.pressed) {
if(timer_elapsed(capslock_timer) < 100) {
if(timer_elapsed(capslock_timer) < 300) {
// activate SHELL_NAV
layer_on(SHELL_NAV);
} else {