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
This commit is contained in:
Nicola
2024-09-13 19:29:54 +02:00
committed by GitHub
parent 0a89062b52
commit 68fb3b10a6

View File

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