Skip to content

Commit

Permalink
Fix encoder_init call order in keyboard_init (#19140)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishoage authored Nov 26, 2022
1 parent e12ca14 commit 9b51f02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quantum/keyboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,9 @@ void keyboard_init(void) {
#endif
#ifdef SPLIT_KEYBOARD
split_pre_init();
#endif
#ifdef ENCODER_ENABLE
encoder_init();
#endif
matrix_init();
quantum_init();
Expand All @@ -374,9 +377,6 @@ void keyboard_init(void) {
#ifdef RGBLIGHT_ENABLE
rgblight_init();
#endif
#ifdef ENCODER_ENABLE
encoder_init();
#endif
#ifdef STENO_ENABLE_ALL
steno_init();
#endif
Expand Down

0 comments on commit 9b51f02

Please sign in to comment.