From 7a4d885e1b37f47555a8e9c89bbe0a17d5cb8305 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:29:03 +0200 Subject: [PATCH] Fn-lock fix https://github.com/seerge/g-helper/issues/1413 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index dcedd42a..eccbff03 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -327,7 +327,7 @@ public static class AppConfig // Devices with bugged bios command to change brightness public static bool SwappedBrightness() { - return ContainsModel("FA506IH") || ContainsModel("FX506LU"); + return ContainsModel("FA506IH") || ContainsModel("FX506LU") || ContainsModel("FX506IC"); }