From 0e232879c0902facdea894251f8fbd014a94f3d7 Mon Sep 17 00:00:00 2001 From: Miodec Date: Sun, 3 Jan 2021 22:35:18 +0000 Subject: [PATCH] read ahead easy cannot be used with word highlight mode. fixes #772 --- src/js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/script.js b/src/js/script.js index e6f4b51d9..ebe5cf1a3 100644 --- a/src/js/script.js +++ b/src/js/script.js @@ -337,7 +337,7 @@ async function activateFunbox(funbox, mode) { restartTest(); } - if (funbox === "read_ahead") { + if (funbox === "read_ahead" || funbox === "read_ahead_easy") { setHighlightMode("letter", true); restartTest(); }