From d6fe7f41c1ab5a1633e5f2b04413e96ef90204fd Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Wed, 13 Dec 2023 23:06:28 +0100 Subject: [PATCH] Remove unsupported RGB colors from GA502IU https://github.com/seerge/g-helper/issues/1740 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index ec4533cb..866416ca 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -345,7 +345,7 @@ public static class AppConfig public static bool IsSingleColor() { - return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM(); + return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("GA502IU"); } public static bool IsStrix()