mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-22 11:29:26 +00:00
[Keymap] Fix missing return for oled task in drashna userspace (#15012)
This commit is contained in:
parent
8812e3724a
commit
89e5e4e7ad
@ -427,7 +427,7 @@ bool oled_task_user(void) {
|
|||||||
if (is_keyboard_master()) {
|
if (is_keyboard_master()) {
|
||||||
if (timer_elapsed32(oled_timer) > 30000) {
|
if (timer_elapsed32(oled_timer) > 30000) {
|
||||||
oled_off();
|
oled_off();
|
||||||
return;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
oled_on();
|
oled_on();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user