fix off-by-1 in textgrid!

SVN revision: 72380
This commit is contained in:
Carsten Haitzler 2012-06-18 10:25:12 +00:00
parent afa6d5076f
commit 00eea12d83
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ evas_object_textgrid_render(Evas_Object *obj, void *output, void *context, void
row->ch1 = -1;
row->ch2 = 0;
run = 0;
xp = obj->cur.geometry.x;
xp = 0;
for (xx = 0; xx < o->cur.w; xx++, cells++)
{
if (cells->bg_extended) palette = o->cur.palette_extended;