From 1366509a6bb0ff82dfdf82dc52a0a3651d99b148 Mon Sep 17 00:00:00 2001 From: Julian Schuler Date: Thu, 24 Apr 2025 21:12:44 +0200 Subject: [PATCH] Fix single key chords not being released --- quantum/process_keycode/process_combo.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/quantum/process_keycode/process_combo.c b/quantum/process_keycode/process_combo.c index c99a66a74b0..b02b7f54330 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