Skip to content

Commit

Permalink
Enable Key Cancellation by default
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Aug 2, 2024
1 parent 222a002 commit cdbacdc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions users/drashna/callbacks.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,10 @@ void eeconfig_init_user(void) {
#endif

// ensure that nkro is enabled
keymap_config.raw = eeconfig_read_keymap();
keymap_config.nkro = true;
keymap_config.raw = eeconfig_read_keymap();
keymap_config.nkro = true;
keymap_config.key_cancellation_enable = true;
keymap_config.key_cancellation_recovery_enable = true;
eeconfig_update_keymap(keymap_config.raw);

eeconfig_update_user_config(&userspace_config.raw);
Expand Down

0 comments on commit cdbacdc

Please sign in to comment.