Skip to content

Commit

Permalink
fix: ergodox glow out of bound animation mode when flashing a layout …
Browse files Browse the repository at this point in the history
…with less animations set
  • Loading branch information
fdidron committed Jul 11, 2024
1 parent ce352c6 commit 1e66361
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions keyboards/ergodox_ez/ergodox_ez.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@ led_config_t g_led_config = { {

# ifdef ORYX_CONFIGURATOR
void keyboard_post_init_kb(void) {
if (rgb_matrix_get_mode() >= RGB_MATRIX_EFFECT_MAX) {
rgb_matrix_mode(RGB_MATRIX_NONE);
}
rgb_matrix_enable_noeeprom();
keyboard_post_init_user();
}
Expand Down

0 comments on commit 1e66361

Please sign in to comment.