From adcba8d35e0b4727ff0007e54a5bfb3b78077887 Mon Sep 17 00:00:00 2001 From: Serge <5920850+seerge@users.noreply.github.com> Date: Mon, 8 Jan 2024 10:27:03 +0100 Subject: [PATCH] Keybindings tweak for FA506IV https://github.com/seerge/g-helper/issues/1869 --- app/AppConfig.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/AppConfig.cs b/app/AppConfig.cs index cc2cc6ec..e4336050 100644 --- a/app/AppConfig.cs +++ b/app/AppConfig.cs @@ -352,7 +352,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"); + return ContainsModel("FA506IH") || ContainsModel("FA506IC") || ContainsModel("FX506LU") || ContainsModel("FX506IC") || ContainsModel("FX506LH") || ContainsModel("FA506IV"); }