From 15459602153f62dc20b17da164fce2030727b448 Mon Sep 17 00:00:00 2001 From: Miodec Date: Tue, 14 Mar 2023 12:00:36 +0100 Subject: [PATCH] applying burst heatmap when changing theme --- frontend/src/ts/test/test-ui.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/ts/test/test-ui.ts b/frontend/src/ts/test/test-ui.ts index 5128736cc..6d38f058c 100644 --- a/frontend/src/ts/test/test-ui.ts +++ b/frontend/src/ts/test/test-ui.ts @@ -54,6 +54,8 @@ ConfigEvent.subscribe((eventKey, eventValue, nosave) => { updateWordsInputPosition(true); } + if (eventKey === "theme") applyBurstHeatmap(); + if (eventValue === undefined || typeof eventValue !== "boolean") return; if (eventKey === "flipTestColors") flipColors(eventValue); if (eventKey === "colorfulMode") colorful(eventValue);