From aea83a352f1c677244ab0e36fefb1f7e3a034456 Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 21 Nov 2025 00:55:03 +0100 Subject: [PATCH] bugfix: incomplete time/date in full font mode maxLen = numberOfChars --- wled00/FX.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/wled00/FX.cpp b/wled00/FX.cpp index 5bbdc8cf..564f2bd7 100644 --- a/wled00/FX.cpp +++ b/wled00/FX.cpp @@ -6910,6 +6910,7 @@ uint16_t mode_2Dscrollingtext(void) { col1 = SEGCOLOR(0); col2 = SEGCOLOR(2); } + maxLen = numberOfChars; // Ensure maxLen reflects the actual rendered text, not the original SEGMENT.name // ToDO remove double parameter SEGMENT.drawText((unsigned char*)text, maxLen, numberOfChars, int(cols) - int(SEGENV.aux0), yoffset, letterWidth, letterHeight, col1, col2, drawShadow); #endif