Browse Source

[keymap] Fixed an issue that long pressed alt key does not work on PSN_FN layer. (#10039)

pull/10050/head
shela 3 years ago
committed by GitHub
parent
commit
f64245b10b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      keyboards/hhkb/ansi/keymaps/shela/keymap.c

+ 10
- 0
keyboards/hhkb/ansi/keymaps/shela/keymap.c View File

@ -406,6 +406,16 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
return false;
case PSE_FN:
if (record->event.pressed) {
if (l_pressed && !l_long_pressed) {
register_code(l_inner);
l_long_pressed = true;
}
if (r_pressed && !r_long_pressed) {
register_code(r_inner);
r_long_pressed = true;
}
}
action_pseudo_process(record, base_layer, keymap_jis2us);
return false;
default:


Loading…
Cancel
Save