Explorar el Código

Format code according to conventions (#12680)

Co-authored-by: QMK Bot <hello@qmk.fm>
github-actions[bot] hace 5 años
padre
commit
d8f113bf98
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      quantum/process_keycode/process_leader.h

+ 2 - 2
quantum/process_keycode/process_leader.h

@@ -37,9 +37,9 @@ void qk_leader_start(void);
     extern uint8_t  leader_sequence_size
 
 #ifdef LEADER_NO_TIMEOUT
-    #define LEADER_DICTIONARY() if (leading && leader_sequence_size > 0 && timer_elapsed(leader_time) > LEADER_TIMEOUT)
+#    define LEADER_DICTIONARY() if (leading && leader_sequence_size > 0 && timer_elapsed(leader_time) > LEADER_TIMEOUT)
 #else
-    #define LEADER_DICTIONARY() if (leading && timer_elapsed(leader_time) > LEADER_TIMEOUT)
+#    define LEADER_DICTIONARY() if (leading && timer_elapsed(leader_time) > LEADER_TIMEOUT)
 #endif
 
 #endif