From 68fb3b10a68220ba9a768149cd3fdcaf32e33e5f Mon Sep 17 00:00:00 2001 From: Nicola <61830443+nicola02nb@users.noreply.github.com> Date: Fri, 13 Sep 2024 19:29:54 +0200 Subject: [PATCH] Added GA502IU model wih NoAura Devices (#3099) Added GA502IU model wih NoAura Devices because has an only static single color keyboard, with no animations; you can only dim it's brightness --- app/AppConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 9023132e..f85e65e5 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -411,7 +411,7 @@ public static class AppConfig // G14 2020 has no aura, but media keys instead public static bool NoAura() { - return (ContainsModel("GA401I") && !ContainsModel("GA401IHR")) || ContainsModel("HN7306"); + return (ContainsModel("GA401I") && !ContainsModel("GA401IHR")) || ContainsModel("GA502IU") || ContainsModel("HN7306"); } public static bool MediaKeys() @@ -421,7 +421,7 @@ public static class AppConfig public static bool IsSingleColor() { - return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("GA502IU") || ContainsModel("FA617N") || ContainsModel("FA617X") || NoAura(); + return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("FA617N") || ContainsModel("FA617X") || NoAura(); } public static bool IsSlash()