﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2815	GUICtrlSetImage resets the icon size	Tweaky		"GUICtrlSetImage resets the icon size.

I think GUICtrlSetImage should be the size actually kept as it was set by GUICtrlCreateIcon


{{{
#Region    ;************ Includes ************
#include <GUIConstantsEx.au3>
#EndRegion    ;************ Includes ************

GUICreate(""My GUI group"", 300, 300)

Global $hIcon1 = GUICtrlCreateIcon(""shell32.dll"", -5, 20, 20, 240, 240)


GUISetState(@SW_SHOW) ; will display an empty dialog box

Sleep(2000)
GUICtrlSetImage($hIcon1, ""shell32.dll"", -6)

; Loop until the user exits.
While 1
	Switch GUIGetMsg()
		Case $GUI_EVENT_CLOSE
			ExitLoop
	EndSwitch
WEnd
}}}

In 3.3.8.1 that works well.
In 3.3.10.2 and later it does not work"	Bug	closed		AutoIt	3.3.12.0	None	Wont Fix		
