提交 0e336146 编写于 作者: B Behdad Esfahbod

Fix bug with not setting Unicode props of the first character

Fixes Mongolian shaping issue:
https://bugs.freedesktop.org/show_bug.cgi?id=45695
上级 f9746b60
......@@ -136,7 +136,7 @@ void
_hb_set_unicode_props (hb_buffer_t *buffer)
{
unsigned int count = buffer->len;
for (unsigned int i = 1; i < count; i++)
for (unsigned int i = 0; i < count; i++)
hb_glyph_info_set_unicode_props (&buffer->info[i], buffer->unicode);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册