Skip to content

Commit

Permalink
Clear up mode name
Browse files Browse the repository at this point in the history
  • Loading branch information
kdb424 committed Aug 25, 2018
1 parent be30782 commit 74ca5aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quantum/process_keycode/process_leader.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ bool process_leader(uint16_t keycode, keyrecord_t *record) {
leader_sequence[4] = 0;
return false;
}
#ifndef LEADER_MODE
#ifndef LEADER_MODE_ENTER
if (leading && timer_elapsed(leader_time) < LEADER_TIMEOUT) {
#else
if (leading) {
Expand Down
2 changes: 1 addition & 1 deletion quantum/process_keycode/process_leader.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void leader_end(void);

#define LEADER_EXTERNS() extern bool leading; extern uint16_t leader_time; extern uint16_t leader_sequence[5]; extern uint8_t leader_sequence_size

#ifndef LEADER_MODE
#ifndef LEADER_MODE_ENTER
#define LEADER_DICTIONARY() if (leading && timer_elapsed(leader_time) > LEADER_TIMEOUT)

#else
Expand Down

0 comments on commit 74ca5aa

Please sign in to comment.