Merge remote-tracking branch 'origin/master' into develop

This commit is contained in:
QMK Bot 2023-04-23 18:57:23 +00:00
commit ce0555214d
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
case KC_ESC:
// Detect the activation of only Left Alt
if ((get_mods() & MOD_BIT(KC_LALT)) == MOD_BIT(KC_LALT)) {
if (get_mods() == MOD_BIT(KC_LALT)) {
if (record->event.pressed) {
// No need to register KC_LALT because it's already active.
// The Alt modifier will apply on this KC_TAB.