Update CacheColor.cs

This commit is contained in:
Sinai
2020-09-21 05:59:01 +10:00
committed by GitHub
parent 04248a89ce
commit a1198f3a92

View File

@ -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();
}
}