Disable Autoshift for shift as well (#330)

This commit is contained in:
Drashna Jaelre
2021-02-26 02:34:19 -08:00
committed by GitHub
parent 2a629f0573
commit cc5e4b76a2

View File

@@ -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