﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2913	Mouse cursor jumps when showing a GUI with child	anonymous		"If you have set the windows mouse properties to automatically move the mouse to the default button (http://3.bp.blogspot.com/_D0ACeJescMU/TKrs3MduTMI/AAAAAAAAAfo/oAn2ccCo_EI/s1600/snap_to_5.png), the following constellation of GUIs will cause the cursor to jump.
Tested on Windows 8 x64.
{{{
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>

$hGUI = GUICreate(""Watch your mouse cursor"")
GUISetState(@SW_SHOW, $hGUI)

$hParent = GUICreate("""")
$hChild = GUICreate("""", 50, 50, -1, -1, $WS_CHILD, -1, $hParent)
Sleep(2000)
GUISetState(@SW_SHOW, $hParent)

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
}}}
The GUI with the $WS_CHILD style is causing this problem, although the mouse also won't jump if there was no other GUI visible before $hParent."	Bug	closed		AutoIt	3.3.12.0	None	Rejected		
