From 3d6ca9eca961750bfcaf9cb43890ea23024eea8c Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Sun, 30 Jan 2011 10:33:57 +0000 Subject: [PATCH] Evas font engine: The position of the NULL returned from coords should depend on query_advance, not query_size. SVN revision: 56431 --- legacy/evas/src/lib/engines/common/evas_font_query.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/engines/common/evas_font_query.c b/legacy/evas/src/lib/engines/common/evas_font_query.c index 359359d29f..b132b51d5c 100644 --- a/legacy/evas/src/lib/engines/common/evas_font_query.c +++ b/legacy/evas/src/lib/engines/common/evas_font_query.c @@ -252,7 +252,7 @@ evas_common_font_query_char_coords(RGBA_Font *fn, const Eina_Unicode *in_text, c else #endif { - evas_common_font_query_size(fn, text, intl_props, cx, ch); + evas_common_font_query_advance(fn, text, intl_props, cx, ch); } if (cy) *cy = 0; if (cw) *cw = 0;