diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-03-31 13:10:08 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-03-31 13:10:08 +0000 |
commit | 96895d67d49463a91ae12b810a1130309415c418 (patch) | |
tree | 743773e3ccd91f7f5f9b1fa620ddfbf552ba68e8 /pango/pango-ot-buffer.c | |
parent | a5347d5e42fe9d889f8b9ddae879754452ac509d (diff) | |
download | pango-96895d67d49463a91ae12b810a1130309415c418.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 bfe10d37..69c2bf05 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); } |