Fixed keyboard not working

This commit is contained in:
Dionysus 2024-06-05 20:17:57 -04:00
parent 68b86a1d6d
commit e77b192dee
Signed by: acidvegas
GPG Key ID: EF4B922DB85DC9DE
1 changed files with 3 additions and 0 deletions

View File

@ -1338,6 +1338,9 @@ void handleKeyboardInput(char key) {
inputBuffer.remove(inputBuffer.length() - 1);
displayInputLine();
}
} else {
inputBuffer += key;
displayInputLine();
}
}