From 6ca63bb9c58aae8e6cb7905c54d35c8781e73c39 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Tue, 12 Dec 2023 12:29:26 +0100 Subject: [PATCH] Removed unsupported backlight options for ARCNM https://github.com/seerge/g-helper/issues/1728 --- app/AppConfig.cs | 2 +- app/Extra.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index ac436c52a..972a88b1c 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -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() diff --git a/app/Extra.cs b/app/Extra.cs index 660f2e643..2246c9c8c 100644 --- a/app/Extra.cs +++ b/app/Extra.cs @@ -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;