scrolling text blur moved to where it should be

accidentally put it into the "full font" ifdef
This commit is contained in:
Frank
2025-11-21 00:36:09 +01:00
parent c36e493b47
commit 053551d61d

View File

@@ -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;
}