Evas textblock: Fix wrong line spacing when appending lines.

This fixes T397 which was introduced by commit: 4bcf4991eb.
This also fixes the issues with enventor.
This commit is contained in:
Tom Hacohen 2013-09-20 13:52:40 +01:00
parent 5a8d3125b5
commit 94e6f6a5bc
1 changed files with 6 additions and 0 deletions

View File

@ -4384,6 +4384,12 @@ _layout_par(Ctxt *c)
EINA_INLIST_GET(c->par->lines)->last;
if (ln)
c->line_no = c->par->line_no + ln->line_no + 1;
/* After this par we are no longer at the beginning, as there
* must be some text in the par. */
if (c->position == TEXTBLOCK_POSITION_START)
c->position = TEXTBLOCK_POSITION_ELSE;
return 0;
}
c->par->text_node->dirty = EINA_FALSE;