From 2dc7d991b13d2d34630ae5c3ee724a07e996ac44 Mon Sep 17 00:00:00 2001 From: ijouw <137716459+ijouw@users.noreply.github.com> Date: Tue, 14 Apr 2026 12:18:33 +0200 Subject: [PATCH] Either output Unicode or insert in Leader sequence (#25940) --- quantum/quantum.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quantum/quantum.c b/quantum/quantum.c index 1a57548fd28..be2e84f6d5e 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -389,12 +389,12 @@ bool process_record_quantum(keyrecord_t *record) { #ifdef TAP_DANCE_ENABLE process_tap_dance(keycode, record) && #endif -#if defined(UNICODE_COMMON_ENABLE) - process_unicode_common(keycode, record) && -#endif #ifdef LEADER_ENABLE process_leader(keycode, record) && #endif +#if defined(UNICODE_COMMON_ENABLE) + process_unicode_common(keycode, record) && +#endif #ifdef AUTO_SHIFT_ENABLE process_auto_shift(keycode, record) && #endif