diff --git a/app/AppConfig.cs b/app/AppConfig.cs index 0de933e0..1f4e7d94 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -431,7 +431,12 @@ public static class AppConfig public static bool IsStrixLimitedRGB() { - return (ContainsModel("G614JI") || ContainsModel("G614JV_") || ContainsModel("G614JZ") || ContainsModel("G512LI") || ContainsModel("G513R") || ContainsModel("G713PV") || ContainsModel("G513IE") || ContainsModel("G713RC") || ContainsModel("G513QM") || ContainsModel("G531G")) && !Is("per_key_rgb"); + return (ContainsModel("G512LI") || ContainsModel("G513R") || ContainsModel("G713PV") || ContainsModel("G513IE") || ContainsModel("G713RC") || ContainsModel("G513QM") || ContainsModel("G531G")) && !Is("per_key_rgb"); + } + + public static bool Is4ZoneRGB() + { + return ContainsModel("G614JI_") || ContainsModel("G614JV_") || ContainsModel("G614JZ") || IsStrixLimitedRGB(); } diff --git a/app/USB/Aura.cs b/app/USB/Aura.cs index 6f0609c3..f2566992 100644 --- a/app/USB/Aura.cs +++ b/app/USB/Aura.cs @@ -82,7 +82,7 @@ namespace GHelper.USB static bool isACPI = AppConfig.IsTUF() || AppConfig.IsVivoZenbook() || AppConfig.IsProArt(); static bool isStrix = AppConfig.IsStrix() && !AppConfig.IsNoDirectRGB(); - static bool isStrix4Zone = AppConfig.IsStrixLimitedRGB(); + static bool isStrix4Zone = AppConfig.Is4ZoneRGB(); static bool isStrixNumpad = AppConfig.IsStrixNumpad(); static public bool isSingleColor = false;