From c76db46869373f3a58aab14c40af8e6e0982e131 Mon Sep 17 00:00:00 2001 From: Miodec Date: Fri, 14 May 2021 00:40:23 +0100 Subject: [PATCH] changing highlight mode will now cause the current word to update to reflect the change --- src/js/config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/js/config.js b/src/js/config.js index a3a09ae31..d1a9134cc 100644 --- a/src/js/config.js +++ b/src/js/config.js @@ -836,6 +836,11 @@ export function setHighlightMode(mode, nosave) { mode = "letter"; } config.highlightMode = mode; + // if(TestLogic.active){ + try{ + if (!nosave) TestUI.updateWordElement(config.blindMode); + }catch{} + // } if (!nosave) saveToLocalStorage(); }