Fixed missing return statement on keyboard input

This commit is contained in:
Dionysus 2024-06-05 20:24:48 -04:00
parent 6dc045e66f
commit e697bf6790
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 3 additions and 1 deletions

View File

@ -1303,8 +1303,10 @@ void parseAndDisplay(String line) {
void handleKeyboardInput(char key) {
lastActivityTime = millis(); // Update last activity time to reset the inactivity timer
if (!screenOn)
if (!screenOn) {
turnOnScreen();
return;
}
static bool altPressed = false;