From 3fbb770de36c4180bf3f952ad6ac81f29ae38452 Mon Sep 17 00:00:00 2001 From: Jari Meevis Date: Sat, 1 Mar 2025 01:58:09 +0100 Subject: [PATCH] Revert "fix oneshot keys sent to host when held after tapping" This reverts commit c2d4dd5333256437073780bdea9e223b3c5635d0. --- quantum/action_util.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/quantum/action_util.c b/quantum/action_util.c index 9f2a30b7a78..c0dc4f38228 100644 --- a/quantum/action_util.c +++ b/quantum/action_util.c @@ -267,9 +267,8 @@ 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(); } }