AutoHotKey/mouse.ahk
Kenneth Benzie (Benie) e3b43313a9 Add reverse scroll wheel hack
There's a better way to do with via regedit
2022-04-26 20:58:19 +01:00

8 lines
98 B
AutoHotkey

#MaxHotkeysPerInterval 200
WheelUp::
Send {WheelDown}
Return
WheelDown::
Send {WheelUp}
Return