Wait for some ms before activating auto next
This commit is contained in:
@@ -369,14 +369,18 @@
|
|||||||
This.AutoForwardEnabled[groupIdx] := false
|
This.AutoForwardEnabled[groupIdx] := false
|
||||||
This.AutoForwardVisited[groupIdx] := []
|
This.AutoForwardVisited[groupIdx] := []
|
||||||
} else {
|
} else {
|
||||||
; Enable and mark current window as first visited
|
; Enable with delay to allow keyup to process first
|
||||||
This.AutoForwardEnabled[groupIdx] := true
|
SetTimer(ObjBindMethod(This, "EnableAutoForward", groupIdx), -100)
|
||||||
This.AutoForwardVisited[groupIdx] := []
|
}
|
||||||
This.AutoForwardProcessedWindow := 0 ; Reset so current window can receive input
|
}
|
||||||
try {
|
|
||||||
ActiveTitle := This.CleanTitle(WinGetTitle("A"))
|
EnableAutoForward(groupIdx) {
|
||||||
This.AutoForwardVisited[groupIdx].Push(ActiveTitle)
|
This.AutoForwardEnabled[groupIdx] := true
|
||||||
}
|
This.AutoForwardVisited[groupIdx] := []
|
||||||
|
This.AutoForwardProcessedWindow := 0
|
||||||
|
try {
|
||||||
|
ActiveTitle := This.CleanTitle(WinGetTitle("A"))
|
||||||
|
This.AutoForwardVisited[groupIdx].Push(ActiveTitle)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user