From 6af7ee9df820554616a5427ccb328d0a484e5a13 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 9 Jan 2026 21:26:59 +0100 Subject: [PATCH] UX improvement: Kept the Colors column visible when toggling GFX button --- wled00/data/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wled00/data/index.js b/wled00/data/index.js index 5409ad27..bb0f15b6 100644 --- a/wled00/data/index.js +++ b/wled00/data/index.js @@ -2308,7 +2308,8 @@ function toggleLiveview() if (isM) { //WLEDMM adding liveview2D support on main ui isLv = !isLv; - gId("colorGFX").style.display = isLv? "inline":"none"; //WLEDMM: set off if explicitly gfx pushed + //WLEDMM: set off if explicitly gfx pushed + gId("colorGFX").style.display = "inline"; // always keep colors visible gId("effectGFX").style.display = isLv? "inline":"none"; gId("segGFX").style.display = isLv? "inline":"none";