Evas textblock: Fixed deleting the last visual format in a row of visual formats, for example in '<b>ab</b><tab>cd' the tab wouldn't have gotten erased correctly.

SVN revision: 52540
This commit is contained in:
Tom Hacohen 2010-09-21 13:05:30 +00:00
parent c2da918bd5
commit ae51c0e16f
1 changed files with 4 additions and 4 deletions

View File

@ -5988,10 +5988,10 @@ evas_textblock_cursor_char_delete(Evas_Textblock_Cursor *cur)
if (fmt)
{
const char *format = NULL;
Evas_Object_Textblock_Node_Format *itr;
Evas_Object_Textblock_Node_Format *last_fmt;
/* If there's a PS it must be the last become it delimits paragraphs */
itr = _evas_textblock_node_format_last_at_off(fmt);
format = eina_strbuf_string_get(fmt->format);
last_fmt = _evas_textblock_node_format_last_at_off(fmt);
format = eina_strbuf_string_get(last_fmt->format);
if (format && _IS_PARAGRAPH_SEPARATOR(format))
{
merge_nodes = 1;
@ -5999,7 +5999,7 @@ evas_textblock_cursor_char_delete(Evas_Textblock_Cursor *cur)
/* If a singnular, mark as invisible, so we'll delete it. */
if (!format || ((*format != '+') && (*format != '-')))
{
fmt->visible = EINA_FALSE;
last_fmt->visible = EINA_FALSE;
}
}