From 3833e149ad5d0200b0ed32e4638d5fc916a57da8 Mon Sep 17 00:00:00 2001
From: echicken <>
Date: Wed, 11 Jan 2017 19:49:13 +0000
Subject: [PATCH] Unset HIGH in displayFrame.attr rather than passing CTRL-A
 code.

---
 xtrn/SlyVote/SlyVote.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/xtrn/SlyVote/SlyVote.js b/xtrn/SlyVote/SlyVote.js
index b88a5c93e2..67f8315081 100644
--- a/xtrn/SlyVote/SlyVote.js
+++ b/xtrn/SlyVote/SlyVote.js
@@ -1331,7 +1331,8 @@ function ViewVoteResults(pSubBoardCode)
 				msgBodyText = "Unable to load poll";
 
 			// Load the poll text into the Frame object and draw the frame
-			displayFrame.clear("\1n");
+			displayFrame.clear();
+			displayFrame.attr&=~HIGH;
 			displayFrame.putmsg(msgBodyText, "\1n");
 			displayFrame.scrollTo(0, 0);
 			if (drawMsg)
-- 
GitLab