﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
1305	GUISetFont, GUICtrlCreateTreeViewItem, korean language combination bug	xyz33 <flash8@…>		"If you use the korean language with a treeview (GUICtrlCreateTreeViewItem) and use a GUI font (GUISetFont) then whatever parameter you use the text cannot be shown.

Example script with UCS-2 Big Endian Encoding:
{{{
#include <GUIConstants.au3>

GuiCreate(""test"")

GUISetFont(8, 300, 0, ""Verdana""); <- if you comment this out than it works

$TreeView = GUICtrlCreateTreeView(50, 50, 150, 40)
GUICtrlCreateTreeViewItem(""korean 업데이트"", $TreeView)
GUICtrlCreateTreeViewItem(""chinese 出碎片整理"", $TreeView)

GUISetState ()

While 1
    $msg = GuiGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then
        ExitLoop
	EndIf
WEnd
Exit
}}}
"	Bug	closed		AutoIt	3.3.0.0	None	No Bug		
