Evas textblock: Fixed a bug in evas_textblock_cursor_char_coord_set.

SVN revision: 62258
This commit is contained in:
Tom Hacohen 2011-08-09 13:55:38 +00:00
parent f765f1e290
commit 202623daed
1 changed files with 1 additions and 1 deletions

View File

@ -7971,7 +7971,7 @@ evas_textblock_cursor_char_coord_set(Evas_Textblock_Cursor *cur, Evas_Coord x, E
}
}
}
else if (o->paragraphs && (y > o->paragraphs->y + o->formatted.h))
else if (o->paragraphs && (y >= o->paragraphs->y + o->formatted.h))
{
/* If we are after the last paragraph, use the last position in the
* text. */