﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
2345	Set font in _ArrayDisplay to allow displaying of unicode characters	anonymous		"This simple code shows that _ArrayDisplay() does not correctly display Unicode characters.

{{{
#include <Array.au3>
Global $array[4] = [ChrW(9824), ChrW(9830), ChrW(9829), ChrW(9827)]
_ArrayDisplay($array)
}}}

Adding one of these lines to the Arraydisplay() function just before the listview is filled will allow the characters to be displayed correctly. These are all recommended standard windows fonts that are available in all versions of Windows.

{{{
GUICtrlSetFont($hListView, Default, Default, Default, ""Arial"")
GUICtrlSetFont($hListView, Default, Default, Default, ""Courier New"")
GUICtrlSetFont($hListView, Default, Default, Default, ""Times New Roman"")
}}}"	Feature Request	closed		Standard UDFs		None	No Bug		
