From 95c56f207a3eeb916041f549c1c1f091477d7f42 Mon Sep 17 00:00:00 2001 From: Jack Date: Fri, 14 Aug 2020 23:10:34 +0100 Subject: [PATCH] toggling live wpm will now actually hide it --- public/js/script.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/public/js/script.js b/public/js/script.js index f6053106d..52a1e972d 100644 --- a/public/js/script.js +++ b/public/js/script.js @@ -2444,8 +2444,7 @@ function liveWpmAndRaw() { } function updateLiveWpm(wpm) { - if (!config.showLiveWpm) return; - if (!testActive) { + if (!testActive || !config.showLiveWpm) { hideLiveWpm(); } else { showLiveWpm();