Update code example to match description (#20528)

This commit is contained in:
Albert Y 2023-04-24 02:56:45 +08:00 committed by GitHub
parent ab4013a69e
commit e1afcda1c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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