From: Tom Hacohen Date: Mon, 10 Feb 2014 14:10:54 +0000 (+0000) Subject: Evas textblock: Fix rendering of spaces in some cases. X-Git-Tag: v1.9.0-alpha1~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80033e022d87e3d455b00ab20d38e5da423281e5;p=platform%2Fupstream%2Fefl.git Evas textblock: Fix rendering of spaces in some cases. The issue was with a textblock that's being resized and a space between formats. The problem is, that the text would get trimmed when wrapping, and then not restored, because it had nothing to merge to. This fixes T924. --- diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c index caf7c5531e..a911a7e3f0 100644 --- a/src/lib/evas/canvas/evas_object_textblock.c +++ b/src/lib/evas/canvas/evas_object_textblock.c @@ -4491,6 +4491,7 @@ _layout_par(Ctxt *c) } else { + ititr->visually_deleted = EINA_FALSE; prev_it = ititr; } }