aboutsummaryrefslogtreecommitdiff
path: root/tt.scroll.ahk
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2020-12-15 21:29:04 +0100
committerJohn Ankarström <john@ankarstrom.se>2020-12-15 21:29:04 +0100
commit7a215bf00d1249defe7624abf17e68dc140657ad (patch)
treec0e6e4364f316acf50b05d8f5faa5357b7be2faa /tt.scroll.ahk
parent61cf490f1860f15dd50f629b373cb03ef8d9f218 (diff)
downloadahk-7a215bf00d1249defe7624abf17e68dc140657ad.tar.gz
scroll: Fix PgUp/PgDn hotkeys
Diffstat (limited to 'tt.scroll.ahk')
-rw-r--r--tt.scroll.ahk4
1 files changed, 2 insertions, 2 deletions
diff --git a/tt.scroll.ahk b/tt.scroll.ahk
index 9a8d41a..0691245 100644
--- a/tt.scroll.ahk
+++ b/tt.scroll.ahk
@@ -14,12 +14,12 @@ return
#IfWinActive
-RCtrl & PgUp::
+>^PgUp::
Loop, 5
SendInput, {WheelUp}
return
-RCtrl & PgDn::
+>^PgDn::
Loop, 5
SendInput, {WheelDown}
return