Skip to content

Commit 0e59f93

Browse files
committed
Invert FN-Lock for ProArt #3012
1 parent 21a2dca commit 0e59f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Input/InputDispatcher.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ public static void ToggleArrowLock()
631631
public static void HardwareFnLock(bool fnLock)
632632
{
633633
Program.acpi.DeviceSet(AsusACPI.FnLock, fnLock ^ AppConfig.IsInvertedFNLock() ? 1 : 0, "FnLock");
634-
AsusHid.WriteInput([AsusHid.INPUT_ID, 0xD0, 0x4E, fnLock ? (byte)0x01 : (byte)0x00], "USB FnLock");
634+
AsusHid.WriteInput([AsusHid.INPUT_ID, 0xD0, 0x4E, fnLock ? (byte)0x00 : (byte)0x01], "USB FnLock");
635635
}
636636

637637
public static void ToggleFnLock()

0 commit comments

Comments
 (0)