1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00

Merge pull request #358 from DarthAffe/bugfix/layout-saving

Fix custom LED data type not being determined correctly
This commit is contained in:
DarthAffe 2023-11-01 21:14:44 +01:00 committed by GitHub
commit 5592fd9923
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,7 +73,7 @@ public static class LayoutExtension
public static void Save(this IDeviceLayout layout, Stream stream) public static void Save(this IDeviceLayout layout, Stream stream)
{ {
Type? customDataType = layout.CustomData?.GetType(); Type? customDataType = layout.CustomData?.GetType();
Type? customLedDataType = layout.Leds.FirstOrDefault(x => x.CustomData != null)?.GetType(); Type? customLedDataType = layout.Leds.FirstOrDefault(x => x.CustomData != null)?.CustomData?.GetType();
Type[] customTypes; Type[] customTypes;
if ((customDataType != null) && (customLedDataType != null)) if ((customDataType != null) && (customLedDataType != null))