Skip to content

Commit

Permalink
[Keymap] Fix missing return for oled task in drashna userspace (qmk#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored and ptrxyz committed Nov 6, 2021
1 parent 1d49635 commit e367686
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion users/drashna/oled_stuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ bool oled_task_user(void) {
if (is_keyboard_master()) {
if (timer_elapsed32(oled_timer) > 30000) {
oled_off();
return;
return false;
} else {
oled_on();
}
Expand Down

0 comments on commit e367686

Please sign in to comment.