From: MyoungWoon Roy Kim Date: Wed, 10 Nov 2010 00:13:28 +0000 (+0900) Subject: [SVN:54157] Fixed the bug about searching the glyph. X-Git-Tag: 2.0_alpha~439 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e8df1e44affa77d3ec1c5a9f0963599988f51a15;p=framework%2Fuifw%2Fevas.git [SVN:54157] Fixed the bug about searching the glyph. --- diff --git a/src/lib/engines/common/evas_font_draw.c b/src/lib/engines/common/evas_font_draw.c index 96faa22..851f723 100644 --- a/src/lib/engines/common/evas_font_draw.c +++ b/src/lib/engines/common/evas_font_draw.c @@ -292,7 +292,14 @@ evas_common_font_glyph_search(RGBA_Font *fn, RGBA_Font_Int **fi_ret, int gl) *fi_ret = fm->fint; return fm->index; } +#if 0 + /*SVN: 54157 Merged by Myoungwoon Kim + * Returning here because of a previous miss when searching the + * glyph causes a bug when glyph caching was before all the + * fonts were loaded, I have no idea how to fix it cleanly, + * not at the moment anyway. -TAsn */ else if (fm->index == -1) return 0; +#endif } }