Removed unsuppored backlight modes for ProArt X13 https://github.com/seerge/g-helper/issues/2912

This commit is contained in:
Serge
2024-08-24 20:07:44 +02:00
parent 56676005a5
commit a5b8885ff6

View File

@@ -411,17 +411,17 @@ public static class AppConfig
// G14 2020 has no aura, but media keys instead // G14 2020 has no aura, but media keys instead
public static bool NoAura() public static bool NoAura()
{ {
return ContainsModel("GA401I") && !ContainsModel("GA401IHR"); return (ContainsModel("GA401I") && !ContainsModel("GA401IHR")) || ContainsModel("HN7306");
} }
public static bool MediaKeys() public static bool MediaKeys()
{ {
return NoAura() || ContainsModel("G712L"); return (ContainsModel("GA401I") && !ContainsModel("GA401IHR")) || ContainsModel("G712L");
} }
public static bool IsSingleColor() public static bool IsSingleColor()
{ {
return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("GA502IU") || ContainsModel("FA617N") || ContainsModel("FA617X"); return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM() || ContainsModel("GA502IU") || ContainsModel("FA617N") || ContainsModel("FA617X") || NoAura();
} }
public static bool IsSlash() public static bool IsSlash()