1
0
Fork 0

kbmulti: remove displayText() false - use undefined

master
Rob Pilling 2023-05-29 11:39:55 +01:00
parent 78995305cb
commit 192adef634
1 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ exports.input = function(options) {
}
function newCharacter(ch) {
displayText();
displayText(false);
if (ch && textIndex < text.length) textIndex ++;
charCurrent = ch;
charIndex = 0;
@ -121,7 +121,7 @@ exports.input = function(options) {
newCharacter();
retireCurrent();
}, settings.charTimeout);
displayText(charTimeout);
displayText(true);
}
function retireCurrent(why) {