Format code according to conventions (#12680)
Co-authored-by: QMK Bot <hello@qmk.fm>
This commit is contained in:
parent
26b9b3aa23
commit
d8f113bf98
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue