﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2707	Incorrect GUI client size	FredAI		"The script below worked fine in the version 3.3.8.1.
When using the version 3.3.10.2 or the latest beta 3.3.11.5, WinGetClientSize() and the GetClientRect() Windows api do not exclude the area occupied by the menu like they should.


{{{
#include <WindowsConstants.au3>
_main()
Func _main()
	$Gui = GUICreate('Menu and edit example',400,300, -1,-1, _
	BitOR($WS_MAXIMIZEBOX,$WS_SIZEBOX,$WS_CAPTION,$WS_SYSMENU,$WS_MINIMIZEBOX), $WS_EX_ACCEPTFILES)
	$menu = GUICtrlCreateMenu('File')
	$apos = WinGetClientSize($Gui)
	$edit = GUICtrlCreateEdit('',0,0,$apos[0], $apos[1])

	GUISetState()
	While GUIGetMsg() <> -3

	WEnd
EndFunc
}}}
 "	Bug	closed		AutoIt	3.3.10.2	None	Fixed		
