1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Fixed alpha-component beeing ignored for the first ledgroup rendered

This commit is contained in:
Darth Affe 2022-01-16 14:21:04 +01:00
parent 60a3c20732
commit 87a6bc2c3f

View File

@ -87,7 +87,7 @@ public class Led : Placeable
if (RequestedColor.HasValue)
RequestedColor = RequestedColor.Value + value;
else
RequestedColor = value;
RequestedColor = _color + value;
}
}