Skip to content

Commit

Permalink
Fix normal combo key repress
Browse files Browse the repository at this point in the history
  • Loading branch information
Filios92 committed Jul 29, 2024
1 parent 969503b commit e9e882e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/process_keycode/process_combo.c
Original file line number Diff line number Diff line change
Expand Up @@ -496,8 +496,8 @@ static combo_key_action_t process_single_combo(combo_t *combo, uint16_t keycode,
#ifdef COMBO_PROCESS_KEY_REPRESS
} else if (record->event.pressed) {
if (COMBO_ACTIVE(combo)) {
KEY_STATE_DOWN(combo->state, key_index);
if (process_combo_key_repress(combo_index, combo, key_index, keycode)) {
KEY_STATE_DOWN(combo->state, key_index);
return COMBO_KEY_REPRESSED;
}
}
Expand Down

0 comments on commit e9e882e

Please sign in to comment.