[Keymap] Fix missing return for oled task in drashna userspace (#15012)
This commit is contained in:
parent
8812e3724a
commit
89e5e4e7ad
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue