[Keymap] Fix missing return for oled task in drashna userspace (#15012)

master
Drashna Jaelre 2021-11-01 19:31:15 -07:00 committed by GitHub
parent 8812e3724a
commit 89e5e4e7ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}