[hangul] Fix ordering of dotted circle with Hangul tone mark (reported by Dohyun Kim).

This commit is contained in:
Jonathan Kew 2014-01-20 19:49:47 +00:00
parent deef186265
commit 83d7e7915a
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ preprocess_text_hangul (const hb_ot_shape_plan_t *plan,
if (font->has_glyph (0x25cc)) if (font->has_glyph (0x25cc))
{ {
hb_codepoint_t chars[2]; hb_codepoint_t chars[2];
if (is_zero_width_char (font, u)) { if (!is_zero_width_char (font, u)) {
chars[0] = u; chars[0] = u;
chars[1] = 0x25cc; chars[1] = 0x25cc;
} else { } else {