Removed unsupported backlight options for ARCNM https://github.com/seerge/g-helper/issues/1728

This commit is contained in:
Serge
2023-12-12 12:29:26 +01:00
parent 4ba11f1f9f
commit 6ca63bb9c5
2 changed files with 2 additions and 2 deletions

View File

@@ -345,7 +345,7 @@ public static class AppConfig
public static bool IsSingleColor() public static bool IsSingleColor()
{ {
return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13"); return ContainsModel("GA401") || ContainsModel("FX517Z") || ContainsModel("FX516P") || ContainsModel("X13") || IsARCNM();
} }
public static bool IsStrix() public static bool IsStrix()

View File

@@ -293,7 +293,7 @@ namespace GHelper
} }
if ((!AppConfig.IsStrix() && !AppConfig.IsZ13()) || AppConfig.IsStrixLimitedRGB()) if ((!AppConfig.IsStrix() && !AppConfig.IsZ13()) || AppConfig.IsStrixLimitedRGB() || AppConfig.IsARCNM())
{ {
labelBacklightLid.Visible = false; labelBacklightLid.Visible = false;
checkAwakeLid.Visible = false; checkAwakeLid.Visible = false;