From cc00295a5dc3332273b36b4df7e5d89e054704a8 Mon Sep 17 00:00:00 2001 From: Miodec Date: Fri, 30 Aug 2024 20:27:27 +0200 Subject: [PATCH] fix: words flashing when line jumping in some modes --- frontend/src/ts/test/test-ui.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index 74539e646..4cd58deab 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -559,7 +559,8 @@ function updateWordsHeight(force = false): void { finalWrapperHeight = wrapperHeight; } - $("#words").css("height", "0px"); + // $("#words").css("height", "0px"); + // not sure why this was here, wonder if removing it will break anything if (Config.tapeMode !== "off") { $("#words").css({ overflow: "hidden", width: "200vw" });