Browse Source

Deploying to gh-pages from @ qmk/qmk_firmware@e1afcda1c05f1004f7a19597d06a73e0bb73150a 🚀

gh-pages
waffle87 1 year ago
parent
commit
b3b512219a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      feature_advanced_keycodes.md

+ 1
- 1
feature_advanced_keycodes.md 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.


Loading…
Cancel
Save