Evas textblock: Fixed selection drawing with multiline mixed ltr/rtl.

SVN revision: 56418
This commit is contained in:
Tom Hacohen 2011-01-30 10:32:39 +00:00
parent 82d4acc36a
commit ab1a4f0a77
1 changed files with 2 additions and 2 deletions

View File

@ -7201,8 +7201,8 @@ _evas_textblock_cursor_range_in_line_geometry_get(
}
else
{
start = (cur2) ? (cur2->pos - it1->text_pos) : 0;
end = (cur1) ? (cur1->pos - it2->text_pos) : end;
start = (cur2) ? (cur2->pos - it1->text_pos) : end;
end = (cur1) ? (cur1->pos - it2->text_pos) : 0;
switch_items = EINA_TRUE;
}