03-12-2019, 04:27 PM
Here's an AutoHotkey script that circumvents the bug by refocusing the browser window on Ctrl-W and Wheel-click at the top area:
Code:
setTitleMatchMode regex
#ifwinactive ahk_exe \\Cent\s*Browser\\
~^w::
winWaitNotActive,,,1
ifWinNotActive
winActivate
return
~MButton up::
mouseGetPos mx, my
winGetPos x, y, w, h
if (mx > x && mx < x + w && my > y && my < y + 64) {
winWaitNotActive,,,1
ifWinNotActive
winActivate
}
return