﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3854	Setting Control Color has unintended consequences in GUI	paul.keselman@…		"Uncommenting GUICtrlSetColor creates a bug where interacting with the input, also causes the button function to be executed

#include <GUIConstantsEx.au3>

$hGUI = GUICreate(""Test"", 200, 100)
$hButton = GUICtrlCreateButton(""Button"", 10, 10, 160, 24)
;GUICtrlSetColor($hButton, 0xFF0000)
$hInput = GUICtrlCreateInput("""", 10, 40, 60, 24)
GUISetState()

While 1
   Switch GUIGetMsg()
	  Case $hButton
		 ConsoleWrite(""Button"" & @CR)
	  Case $hInput
		 ConsoleWrite(""Input"" & @CR)
	  Case $GUI_EVENT_CLOSE
		 Exit
   EndSwitch
WEnd"	Bug	new		AutoIt	3.3.14.5	None			
