﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2566	"""global"" cursor in GUISetCursor fails."	steinar@…	Jon	"Setting the override flag in GUISetCursor() does not work in latest beta. When hovering another control autoit defaults to the cursor id of that control.

Example script:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
$Form1 = GUICreate(""Form1"", 615, 438, 192, 124)
$Button1 = GUICtrlCreateButton(""Button1"", 64, 56, 89, 33)
$Button2 = GUICtrlCreateButton(""Button2"", 272, 56, 89, 33)
GUISetState(@SW_SHOW)
GUISetCursor(15, 1, $Form1)

While 1
	$nMsg = GUIGetMsg()
	Switch $nMsg
		Case $GUI_EVENT_CLOSE
			Exit
		Case $Button1
			GUISetCursor(2, 1, $Form1)
		Case $Button2
			GUISetCursor(15, 1, $Form1)
	EndSwitch
WEnd
"	Bug	closed	3.3.11.0	AutoIt	3.3.9.25	None	Fixed		
