aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMiodec <[email protected]>2023-03-08 13:59:56 +0100
committerMiodec <[email protected]>2023-03-08 14:07:08 +0100
commit0916fa94369d813c0fd461c9fd55a096a4e7a180 (patch)
treef73a7d8d1039842a2d11cd76e75b8f76e4b090f8
parent8e39ee104191558629ca1ae9e0d9466c158a93c4 (diff)
downloadmonkeytype-0916fa94369d813c0fd461c9fd55a096a4e7a180.tar.gz
monkeytype-0916fa94369d813c0fd461c9fd55a096a4e7a180.zip
updating words input position on font size change
-rw-r--r--frontend/src/ts/test/test-ui.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts
index ba8c38127..6b09de75c 100644
--- a/frontend/src/ts/test/test-ui.ts
+++ b/frontend/src/ts/test/test-ui.ts
@@ -51,6 +51,7 @@ ConfigEvent.subscribe((eventKey, eventValue, nosave) => {
}
if (eventKey === "fontSize" && !nosave) {
updateWordsHeight(true);
+ updateWordsInputPosition(true);
}
if (eventValue === undefined || typeof eventValue !== "boolean") return;