﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1705	Control Resizing before WinMove	anonymous		"I saw like a ticket, but there is not clear what exactly fixed.
In this ticket very clearly shows what the bug.

At the beginning of script I create Form and ListView. Then I resize ListView and then I resize Form and here appears a bug (sizes of ListView returned to the original values).

{{{
#include <GuiConstantsEx.au3>

;Opt(""GUIResizeMode"", $GUI_DOCKALL)

$Form = GUICreate(""Form"", 300, 300, 0, 0)
GUISetState()

$hListView = GUICtrlCreateListView(""ListView"", 8, 8, 10, 10)

Sleep(1000)

; --------------- Resizing Listview ------------------
ControlMove($Form, """", $hListView, 8, 8, 200, 200)
;WinMove(GUICtrlGetHandle($hListView), """", 8, 8, 200, 200)
; ----------------------------------------------------

Sleep(1000)

; ------- Resizing Form  -----------
WinMove($Form, """", 0, 0, 600, 600)
; ----------------------------------

; After WinMove sizes of ListView returned to the original values

Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
}}}
"	Bug	closed		AutoIt	3.3.6.1	None	No Bug		
