diff options
| author | Julian Schuler | 2025-11-23 12:25:59 +0100 |
|---|---|---|
| committer | GitHub | 2025-11-23 12:25:59 +0100 |
| commit | b321789d7b3e0207f9f5e103a8481a0d90ba2814 (patch) | |
| tree | 42ebfe5efd5625306bb0ccf485b8ca0d42d19bc0 /quantum | |
| parent | 4015c40ba4fd9a671c2e919582bbabab7320544b (diff) | |
Fix single key combos activating only once (#25198)
Co-authored-by: Julian Schuler <julianschuler@users.noreply.github.com>
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/process_keycode/process_combo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c index c99a66a74b..b02b7f5433 100644 --- a/quantum/process_keycode/process_combo.c +++ b/quantum/process_keycode/process_combo.c @@ -347,6 +347,10 @@ void apply_combo(uint16_t combo_index, combo_t *combo) { qrecord->combo_index = combo_index; ACTIVATE_COMBO(combo); + if (key_count == 1) { + release_combo(combo_index, combo); + } + break; } else { // key was part of the combo but not the last one, "disable" it |