From 75c04fc2b79bb922c325707132360ba9229711e6 Mon Sep 17 00:00:00 2001 From: Jari Meevis Date: Sun, 16 Feb 2025 17:08:32 +0100 Subject: [PATCH] fix oneshot keys sent to host when held after tapping --- quantum/action_util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quantum/action_util.c b/quantum/action_util.c index c0dc4f38228..9f2a30b7a78 100644 --- a/quantum/action_util.c +++ b/quantum/action_util.c @@ -267,8 +267,9 @@ static uint8_t get_mods_for_report(void) { clear_oneshot_mods(); } # endif - mods |= oneshot_mods; if (has_anykey()) { + // only send oneshots to host if used with a real key + mods |= oneshot_mods; clear_oneshot_mods(); } }