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