Fix encoder_init call order in keyboard_init (#19140)
This commit is contained in:
parent
e12ca14af8
commit
9b51f02f45
1 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue