Update 103 and 105 developer..the issue is still not fixed...anyway thought to share this
This is the autoit code I wrote 2/3 months ago (since the issue started) to push the mouse back in position it is still working great
#include <Misc.au3>
#include <AutoItConstants.au3>
#include <Process.au3>
Global $Paused
HotKeySet("{DEL}", "Stop")
Run("launcher.exe")
ProcessWait("opera.exe")
While ProcessExists("opera.exe")
Local $limitAccess = WinGetProcess("[ACTIVE]", "")
Local $limitName = _ProcessGetName($limitAccess)
if $limitName == "opera.exe" Then
$mousepos=mousegetpos()
If $mousepos[0] >= @DesktopWidth-3 Then
MouseMove(@DesktopWidth-3,$mousepos[1])
EndIf
EndIf
Sleep(50)
WEnd
ProcessWaitClose("opera.exe")
Exit
Func Stop()
Exit
EndFunc