Evas textblock: Advancement within a line should be according to advance size, and not width.

SVN revision: 56430
This commit is contained in:
Tom Hacohen 2011-01-30 10:33:50 +00:00
parent 509e7bed98
commit 8d56aef16a
1 changed files with 1 additions and 1 deletions

View File

@ -2178,7 +2178,7 @@ _layout_line_advance(Ctxt *c, Evas_Object_Textblock_Format *fmt)
}
}
endx = it->x + it->w;
endx = it->x + it->adv;
if (endx > c->ln->w) c->ln->w = endx;
}