From 0f343e753fa3aae56c7e4738c3577603867dbd59 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Tue, 10 Sep 2024 15:42:51 -0600 Subject: [PATCH] Dont cancel message timeout --- messagegui/messagegui.app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/messagegui/messagegui.app.js b/messagegui/messagegui.app.js index bc928c0..d2161b6 100644 --- a/messagegui/messagegui.app.js +++ b/messagegui/messagegui.app.js @@ -239,7 +239,7 @@ function showMusicMessage(msg) { } function showMessageScroller(msg) { - cancelReloadTimeout(); + //cancelReloadTimeout(); // commented out because this is the new message display and we want it to disappear active = "scroller"; var bodyFont = fontLarge; g.setFont(bodyFont); @@ -248,7 +248,7 @@ function showMessageScroller(msg) { lines = [lines[0]]; var titleCnt = lines.length; //if (titleCnt) lines.push(""); // add blank line after title - lines = lines.concat(g.wrapString(msg.body, g.getWidth()-10)) //,["",/*LANG*/"< Back"]); + lines = lines.concat(g.wrapString(msg.body, g.getWidth()-10)); //,["",/*LANG*/"< Back"]); E.showScroller({ h : g.getFontHeight(), // height of each menu item in pixels c : lines.length, // number of menu items