mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-17 21:22:05 +00:00
Fix single key chords not being released
This commit is contained in:
parent
089910ceef
commit
1366509a6b
@ -347,6 +347,10 @@ void apply_combo(uint16_t combo_index, combo_t *combo) {
|
|||||||
qrecord->combo_index = combo_index;
|
qrecord->combo_index = combo_index;
|
||||||
ACTIVATE_COMBO(combo);
|
ACTIVATE_COMBO(combo);
|
||||||
|
|
||||||
|
if (key_count == 1) {
|
||||||
|
release_combo(combo_index, combo);
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
// key was part of the combo but not the last one, "disable" it
|
// key was part of the combo but not the last one, "disable" it
|
||||||
|
Loading…
Reference in New Issue
Block a user