diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2006-08-15 07:24:48 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2006-08-15 07:24:48 +0000 |
commit | a79ad88362620acce4cdbebac12f049b83a1a396 (patch) | |
tree | 7106607a7f8d0fd49c279360bd9cb88329f3e9f1 /pango/pango-context.c | |
parent | fa4060b583954b6ac17b674b8b6da590bc86163f (diff) | |
download | pango-a79ad88362620acce4cdbebac12f049b83a1a396.tar.gz |
Add FIXME note about handling item gravity.
2006-08-15 Behdad Esfahbod <behdad@gnome.org>
* pango/pango-context.c (itemize_state_process_run):
Add FIXME note about handling item gravity.
* pango/pangofc-fontmap.c (fontset_hash_key_equal),
(fontset_hash_key_hash), (fontset_hash_key_copy),
(pango_fc_font_map_get_patterns): Add gravity into the hask key.
Diffstat (limited to 'pango/pango-context.c')
-rw-r--r-- | pango/pango-context.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pango/pango-context.c b/pango/pango-context.c index fc199083..34a91f4b 100644 --- a/pango/pango-context.c +++ b/pango/pango-context.c @@ -1165,7 +1165,12 @@ itemize_state_process_run (ItemizeState *state) font = NULL; } else - get_shaper_and_font (state, wc, &shape_engine, &font); + { + /* FIXME: We need a way to respect item gravity when loading + * fonts, but we currently don't have a way to do that. + */ + get_shaper_and_font (state, wc, &shape_engine, &font); + } itemize_state_add_character (state, shape_engine, font, |