Evas textblock: Fixed deletion of ranges ending with visual formats.

This is a regression introduced in:
3f3ad67616
This commit is contained in:
Tom Hacohen 2013-12-13 14:41:49 +00:00
parent 42a06f24d8
commit 7141c1dbb2
1 changed files with 1 additions and 1 deletions

View File

@ -7830,7 +7830,7 @@ _evas_textblock_node_text_adjust_offsets_to_start(Evas_Object_Textblock *o,
last_node->offset -= delta;
break;
}
else if (use_end && itr && (pos + itr->offset >= (size_t) end) &&
else if (use_end && itr && (pos + itr->offset > (size_t) end) &&
itr->visible)
{
break;