Fix caps word + autoshift (#351)

This commit is contained in:
Drashna Jaelre
2022-07-12 16:35:17 -07:00
committed by GitHub
parent 60c1aa3677
commit 085f0898e0
2 changed files with 10 additions and 1 deletions

View File

@@ -131,7 +131,11 @@ bool process_caps_word(uint16_t keycode, keyrecord_t* record) {
#endif // SWAP_HANDS_ENABLE
}
#ifdef AUTO_SHIFT_ENABLE
del_weak_mods(get_autoshift_state() ? ~MOD_BIT(KC_LSFT) : 0xff);
#else
clear_weak_mods();
#endif
if (caps_word_press_user(keycode)) {
send_keyboard_report();
return true;