From 8edc91022c3943fb306cee26ed6eb85381b5ea76 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 3 Oct 2018 20:13:20 +0200 Subject: [PATCH] [indic] Reset continuation on inserted dottedcircle --- src/hb-ot-shape-complex-indic.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index e92c9ed06..f1ae303ad 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -334,7 +334,9 @@ data_destroy_indic (void *data) static void _output_with_dotted_circle (hb_buffer_t *buffer) { - buffer->output_glyph (0x25CCu); + hb_glyph_info_t &dottedcircle = buffer->output_glyph (0x25CCu); + _hb_glyph_info_reset_continuation (&dottedcircle); + buffer->next_glyph (); }