Jelajahi Sumber

Either output Unicode or insert in Leader sequence (#25940)

ijouw 3 bulan lalu
induk
melakukan
2dc7d991b1
1 mengubah file dengan 3 tambahan dan 3 penghapusan
  1. 3 3
      quantum/quantum.c

+ 3 - 3
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