﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2943	Disabled dummy control reacts on accelerators	Synix <cross.fire@…>	Jon	"I noticed that in previous versions (3.3.12.0) $GUI_DISABLE didn't have any effect on accelerators. This is fixed in the beta, but unfortunately not completely.
Testing 3.3.13.19, $GUI_DISABLE disables accelerators for controls like buttons, but not for dummy controls.

This should not work:
{{{
#include <GUIConstantsEx.au3>

GUICreate(""Hit Enter in this GUI"")
$idDummy = GUICtrlCreateDummy()
GUICtrlSetState($idDummy, $GUI_DISABLE)
Global $aArray[1][2] = [[""{ENTER}"", $idDummy]]
GUISetAccelerators($aArray)
GUISetState()

While 1
	Switch GUIGetMsg()
		Case $GUI_EVENT_CLOSE
			Exit
		Case $idDummy
			MsgBox(0, ""Dummy"", ""Entered"")
	EndSwitch
WEnd
}}}


Another thing that I think should not be possible and may be related to this is GUICtrlSendToDummy:
{{{GUICtrlSendToDummy()}}} triggers events on disabled dummy controls, which I guess shouldn't be possible as well."	Bug	closed		AutoIt	3.3.13.19	None	Works For Me		
