From 1da2692c34124a163eb1b88c95794552d62f83d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Kristan?= Date: Sun, 2 Nov 2025 18:00:48 +0100 Subject: [PATCH] Add segment checkmarks to `differs()` check --- wled00/json.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wled00/json.cpp b/wled00/json.cpp index d2b771c5..82043194 100644 --- a/wled00/json.cpp +++ b/wled00/json.cpp @@ -51,6 +51,9 @@ namespace { if (a.custom1 != b.custom1) d |= SEG_DIFFERS_FX; if (a.custom2 != b.custom2) d |= SEG_DIFFERS_FX; if (a.custom3 != b.custom3) d |= SEG_DIFFERS_FX; + if (a.check1 != b.check1) d |= SEG_DIFFERS_FX; + if (a.check2 != b.check2) d |= SEG_DIFFERS_FX; + if (a.check3 != b.check3) d |= SEG_DIFFERS_FX; if (a.startY != b.startY) d |= SEG_DIFFERS_BOUNDS; if (a.stopY != b.stopY) d |= SEG_DIFFERS_BOUNDS;