Skip to content

Commit

Permalink
Disable Autoshift for shift as well (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Feb 26, 2021
1 parent 2a629f0 commit cc5e4b7
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 cc5e4b7

Please sign in to comment.