Compare commits

...

1 Commits
main ... ripley

Author SHA1 Message Date
e3b43313a9 Add reverse scroll wheel hack
There's a better way to do with via regedit
2022-04-26 20:58:19 +01:00

7
mouse.ahk Normal file
View File

@ -0,0 +1,7 @@
#MaxHotkeysPerInterval 200
WheelUp::
Send {WheelDown}
Return
WheelDown::
Send {WheelUp}
Return