From 2a3c13ef8734679c00dd4e7247d87323edf1b279 Mon Sep 17 00:00:00 2001 From: Darth Affe Date: Tue, 25 Dec 2018 18:54:50 +0100 Subject: [PATCH] Fixed an issue with unchanched leds beeing flagged as dirty --- RGB.NET.Core/Leds/Led.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RGB.NET.Core/Leds/Led.cs b/RGB.NET.Core/Leds/Led.cs index d38185e..b300065 100644 --- a/RGB.NET.Core/Leds/Led.cs +++ b/RGB.NET.Core/Leds/Led.cs @@ -57,7 +57,7 @@ namespace RGB.NET.Core /// /// Indicates whether the is about to change it's color. /// - public bool IsDirty => RequestedColor.HasValue; + public bool IsDirty => RequestedColor.HasValue && (RequestedColor != InternalColor); private Color? _requestedColor; ///