Skip to content

Commit

Permalink
small fix for scroll from top.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZashIn committed Apr 18, 2020
1 parent 4384ce7 commit f32f285
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PlanetSide2-kick-assistant.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ alwaysOnTop := true ; Can be toggled via menu
; #####

global ScriptTitle, version
version = 0.3
version = 0.3.1
ScriptTitle = PlanetSide 2 kick assistant v%version%

Init()
Expand Down Expand Up @@ -260,7 +260,7 @@ ScrollToNextInactive() {
LV_Modify(len, "Focus Select Vis")
}
i := LV_GetNext()
if (Abs(i - next) > 0) {
if (i - next > 0) {
; Move up
aKey = Up
pKey = PgUp
Expand Down

0 comments on commit f32f285

Please sign in to comment.