From 883d473ad479c3903139b4cfced34bec8d745d2b Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Sun, 24 Mar 2024 12:31:55 +0100 Subject: [PATCH] Swapped brightness controls for FA706IC https://github.com/seerge/g-helper/issues/2278 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index b5e53393..7ff42b68 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -374,7 +374,7 @@ public static class AppConfig // Devices with bugged bios command to change brightness public static bool SwappedBrightness() { - return ContainsModel("FA506IH") || ContainsModel("FA506IC") || ContainsModel("FX506LU") || ContainsModel("FX506IC") || ContainsModel("FX506LH") || ContainsModel("FA506IV"); + return ContainsModel("FA506IH") || ContainsModel("FA506IC") || ContainsModel("FX506LU") || ContainsModel("FX506IC") || ContainsModel("FX506LH") || ContainsModel("FA506IV") || ContainsModel("FA706IC"); }