From a1198f3a924753cfffbcb664b052187a266b03f6 Mon Sep 17 00:00:00 2001 From: Sinai <49360850+sinai-dev@users.noreply.github.com> Date: Mon, 21 Sep 2020 05:59:01 +1000 Subject: [PATCH] Update CacheColor.cs --- src/CachedObjects/Struct/CacheColor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CachedObjects/Struct/CacheColor.cs b/src/CachedObjects/Struct/CacheColor.cs index b3ceee6..fd19836 100644 --- a/src/CachedObjects/Struct/CacheColor.cs +++ b/src/CachedObjects/Struct/CacheColor.cs @@ -106,7 +106,7 @@ namespace Explorer && float.TryParse(b, out float fB) && float.TryParse(a, out float fA)) { - Value = new Color(fR, fB, fG, fA); + Value = new Color(fR, fG, fB, fA); SetValue(); } }