Evas textblock: Yet another coord_set fix.

SVN revision: 60750
This commit is contained in:
Tom Hacohen 2011-06-28 08:27:26 +00:00
parent c81a71d18d
commit c357c362fb
1 changed files with 1 additions and 1 deletions

View File

@ -7608,7 +7608,7 @@ evas_textblock_cursor_char_coord_set(Evas_Textblock_Cursor *cur, Evas_Coord x, E
cur->node = found_par->text_node;
return EINA_TRUE;
}
else if (x > ln->x + ln->w)
else if (x >= ln->x + ln->w)
{
cur->pos =
_ITEM(EINA_INLIST_GET(ln->items)->last)->text_pos;