﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
213	GUISetAccelerators doesn't work with enter Key from 3.2.11.6	Wooltown	Jpm	"From Beta 3.2.11.6 - ENTER - doesn't work on GUISetAccelerators, worked fine on 3.2.11.5.
{{{
#include <GUIConstantsEx.au3>

GUICreate(""Custom Msgbox"", 280, 80)

GUICtrlCreateLabel(""Please click a button!"", 10, 10)
$YesID = GUICtrlCreateButton(""Yes"", 10, 50, 50, 20)
$NoID = GUICtrlCreateButton(""No"", 80, 50, 50, 20)
$ExitID = GUICtrlCreateButton(""Exit"", 150, 50, 50, 20)
$EnterID = GUICtrlCreateButton(""Enter"", 220, 50, 50, 20)

; Set accelerators for Ctrl+y and Ctrl+n
Dim $AccelKeys[3][2]=[[""^y"", $YesID], [""^n"", $NoID],[""{ENTER}"", $EnterID]]
GUISetAccelerators($AccelKeys)

GUISetState()  ; display the GUI

Do
	$msg = GUIGetMsg()

	Select
		Case $msg = $YesID
			MsgBox(0, ""You clicked on"", ""Yes"")
		Case $msg = $NoID
			MsgBox(0, ""You clicked on"", ""No"")
		Case $msg = $ExitID
			MsgBox(0, ""You clicked on"", ""Exit"")
		Case $msg = $EnterID
			MsgBox(0, ""You clicked on"", ""Enter"")	
		Case $msg = $GUI_EVENT_CLOSE
			MsgBox(0, ""You clicked on"", ""Close"")
	EndSelect
Until $msg = $GUI_EVENT_CLOSE Or $msg = $ExitID
}}}
"	Bug	closed	3.2.11.8	AutoIt	3.2.11.6	Blocking	Fixed		
