From cc760e98a076ac1e8e5aadacd3cae180fd1799d5 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Mon, 27 Nov 2023 20:58:21 +0100 Subject: [PATCH] Fix for #3514 --- wled00/FX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/FX.cpp b/wled00/FX.cpp index a5926f4b..e162e345 100644 --- a/wled00/FX.cpp +++ b/wled00/FX.cpp @@ -86,7 +86,7 @@ static float mapf(float x, float in_min, float in_max, float out_min, float out_ */ uint16_t mode_static(void) { SEGMENT.fill(SEGCOLOR(0)); - return FRAMETIME_FIXED_SLOW; // WLEDMM to ensure smooth color changes from DMX (PR #73) + return strip.isOffRefreshRequired() ? FRAMETIME : FRAMETIME_FIXED_SLOW; // WLEDMM to ensure smooth color changes from DMX (PR #73) } static const char _data_FX_MODE_STATIC[] PROGMEM = "Solid";