Fix oneshot toggle logic (#16630)

* Fix oneshot toggle logic

* Enable oneshots by default

* Decrement eeconfig magic number due to eeconfig changes
This commit is contained in:
Drashna Jaelre 2022-03-13 18:11:42 -07:00 committed by GitHub
parent 42d084d1c0
commit b8574efcd6
Failed to generate hash of commit
5 changed files with 15 additions and 16 deletions

View file

@ -37,7 +37,7 @@ typedef union {
bool nkro : 1;
bool swap_lctl_lgui : 1;
bool swap_rctl_rgui : 1;
bool oneshot_disable : 1;
bool oneshot_enable : 1;
};
} keymap_config_t;