diff options
author | John Ankarström <john@ankarstrom.se> | 2020-12-15 21:29:04 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2020-12-15 21:29:04 +0100 |
commit | 7a215bf00d1249defe7624abf17e68dc140657ad (patch) | |
tree | c0e6e4364f316acf50b05d8f5faa5357b7be2faa | |
parent | 61cf490f1860f15dd50f629b373cb03ef8d9f218 (diff) | |
download | ahk-7a215bf00d1249defe7624abf17e68dc140657ad.tar.gz |
scroll: Fix PgUp/PgDn hotkeys
-rw-r--r-- | tt.scroll.ahk | 4 |
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 |