Skip to content

Commit

Permalink
Fix issues when manually shifting characters and Auto Shift (qmk#12083)
Browse files Browse the repository at this point in the history
Specifically, when using the Auto-Shift feature, if you hold and roll shift, it would not actually shift the character that you hit after the shift
  • Loading branch information
drashna authored and mrtnee committed Nov 20, 2021
1 parent 4b4adf6 commit b68dec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/process_keycode/process_auto_shift.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static bool autoshift_press(uint16_t keycode, uint16_t now, keyrecord_t *record)
}

# ifndef AUTO_SHIFT_MODIFIERS
if (get_mods() & (~MOD_BIT(KC_LSFT))) {
if (get_mods()) {
return true;
}
# endif
Expand Down

0 comments on commit b68dec8

Please sign in to comment.