Skip to content

Commit

Permalink
[Keyboard] Fix missing return for oled task on Arabica37 (#15011)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Nov 2, 2021
1 parent 4bc1b12 commit 8812e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboards/arabica37/keymaps/default/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,6 @@ bool oled_task_user(void) {
oled_write_P(led_state.num_lock ? PSTR("NUM ") : PSTR(" "), false);
oled_write_P(led_state.caps_lock ? PSTR("CAP ") : PSTR(" "), false);
oled_write_P(led_state.scroll_lock ? PSTR("SCR ") : PSTR(" "), false);
return false;
}


Expand All @@ -196,5 +195,6 @@ bool oled_task_user(void) {
} else {
render_logo(); // Renders a static logo
}
return false;
}
#endif

0 comments on commit 8812e37

Please sign in to comment.