efl/wayland_egl: Fix invalid argument being passed

evas_common_font_draw() should be called with glyphs array for now,
instead of intl_props.

This patch should fix ticket #2149.

Signed-off-by: Paulo Alcantara <pcacjr@profusion.mobi>

Patch by: Paulo Alcantara <pcacjr@profusion.mobi>

SVN revision: 82229
This commit is contained in:
Paulo Alcantara 2013-01-04 19:37:22 +00:00 committed by Rafael Antognolli
parent 2b672efbdd
commit a33afe35f9
1 changed files with 1 additions and 1 deletions

View File

@ -2069,7 +2069,7 @@ eng_font_draw(void *data, void *context, void *surface, Evas_Font_Set *font EINA
evas_gl_font_texture_free,
evas_gl_font_texture_draw);
evas_common_font_draw_prepare(intl_props);
evas_common_font_draw(im, context, x, y, intl_props);
evas_common_font_draw(im, context, x, y, intl_props->glyphs);
evas_common_draw_context_font_ext_set(context, NULL, NULL, NULL, NULL);
}
}