Skip to content

Commit

Permalink
Removed unsupported backlight options for ARCNM #1728
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Dec 12, 2023
1 parent 4ba11f1 commit 6ca63bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ public static bool NoAura()

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()
Expand Down
2 changes: 1 addition & 1 deletion app/Extra.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public Extra()

}

if ((!AppConfig.IsStrix() && !AppConfig.IsZ13()) || AppConfig.IsStrixLimitedRGB())
if ((!AppConfig.IsStrix() && !AppConfig.IsZ13()) || AppConfig.IsStrixLimitedRGB() || AppConfig.IsARCNM())
{
labelBacklightLid.Visible = false;
checkAwakeLid.Visible = false;
Expand Down

0 comments on commit 6ca63bb

Please sign in to comment.