From 192adef634e4c29f92e5dc2fcfff28b96efa9785 Mon Sep 17 00:00:00 2001 From: Rob Pilling Date: Mon, 29 May 2023 11:39:55 +0100 Subject: [PATCH] kbmulti: remove displayText() false - use undefined --- apps/kbmulti/lib.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/kbmulti/lib.js b/apps/kbmulti/lib.js index 01be03feb..519860b51 100644 --- a/apps/kbmulti/lib.js +++ b/apps/kbmulti/lib.js @@ -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) {