Evas textblock: Fixed weird cursor behavior with empty textblocks.

SVN revision: 61067
This commit is contained in:
Tom Hacohen 2011-07-06 07:32:14 +00:00
parent 3b80b133bf
commit 3c6a42b04b
1 changed files with 5 additions and 1 deletions

View File

@ -4045,7 +4045,11 @@ _layout(const Evas_Object *obj, int w, int h, int *w_ret, int *h_ret)
EINA_INLIST_GET(c->paragraphs)->last;
if (!c->par->logical_items)
{
_layout_text_append(c, c->fmt, NULL, 0, 0, NULL);
Evas_Object_Textblock_Text_Item *ti;
ti = _layout_text_item_new(c, c->fmt);
ti->parent.text_node = o->text_nodes;
ti->parent.text_pos = 0;
_layout_text_add_logical_item(c, ti, NULL);
}
/* End of logical layout creation */