diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-03-31 13:09:47 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-03-31 13:09:47 +0000 |
commit | 2bddc707f705150c2822960ccc91ca0014437a04 (patch) | |
tree | 19cf0082a944b86b178af31662a75aaa5a0634d0 /pango/pango-ot-buffer.c | |
parent | 4fe8cbff144c0052edd89bd9a77882e8c4682af4 (diff) | |
download | pango-2bddc707f705150c2822960ccc91ca0014437a04.tar.gz |
Part of Bug 336026 – Make fallback shaper in modules work Patch from
2006-03-31 Behdad Esfahbod <behdad@gnome.org>
Part of Bug 336026 – Make fallback shaper in modules work
Patch from Denis Jacquerye.
* pango/pango-ot-buffer.c (pango_ot_buffer_output): Call
pango_fc_font_kern_glyphs if GPOS not applied.
Diffstat (limited to 'pango/pango-ot-buffer.c')
-rw-r--r-- | pango/pango-ot-buffer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pango/pango-ot-buffer.c b/pango/pango-ot-buffer.c index 00fc4686..fef5a0c0 100644 --- a/pango/pango-ot-buffer.c +++ b/pango/pango-ot-buffer.c @@ -354,6 +354,8 @@ pango_ot_buffer_output (PangoOTBuffer *buffer, else apply_gpos_ltr (glyphs, buffer->buffer->positions); } + else + pango_fc_font_kern_glyphs (buffer->font, glyphs); pango_fc_font_unlock_face (buffer->font); } |