From 053551d61deb8be4250dd31e64a3742e974b6e5e Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 21 Nov 2025 00:36:09 +0100 Subject: [PATCH] scrolling text blur moved to where it should be accidentally put it into the "full font" ifdef --- wled00/FX.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wled00/FX.cpp b/wled00/FX.cpp index 3943b592..5bbdc8cf 100644 --- a/wled00/FX.cpp +++ b/wled00/FX.cpp @@ -6911,12 +6911,13 @@ uint16_t mode_2Dscrollingtext(void) { col2 = SEGCOLOR(2); } SEGMENT.drawText((unsigned char*)text, maxLen, numberOfChars, int(cols) - int(SEGENV.aux0), yoffset, letterWidth, letterHeight, col1, col2, drawShadow); +#endif + // WLEDMM add some blur - if (SEGENV.check3) { + if (SEGMENT.check3) { if (SEGMENT.custom1 < 16) SEGMENT.blurRows(16); // only blur if no trail SEGMENT.blurCols(20); } -#endif return FRAMETIME; }