mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-09-07 19:02:35 +02:00
Fix single key combos activating only once (#25198)
Co-authored-by: Julian Schuler <julianschuler@users.noreply.github.com>
This commit is contained in:
co-authored by
Julian Schuler
parent
4015c40ba4
commit
b321789d7b
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user