fix for realtime mode with "use main segment only"

This commit is contained in:
Frank
2024-12-30 23:31:13 +01:00
parent 4116785b44
commit d58cb495e4

View File

@@ -201,6 +201,8 @@ void realtimeLock(uint32_t timeoutMs, byte md)
if (realtimeOverride) return;
if (arlsForceMaxBri) strip.setBrightness(scaledBri(255), true);
if (briT > 0 && md == REALTIME_MODE_GENERIC) strip.show();
if (realtimeMode && !realtimeOverride && useMainSegmentOnly) strip.getMainSegment().startFrame(); // WLEDMM make sure the main segment is ready for drawing
}
void exitRealtime() {