From 80033e022d87e3d455b00ab20d38e5da423281e5 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Mon, 10 Feb 2014 14:10:54 +0000 Subject: [PATCH] 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. --- src/lib/evas/canvas/evas_object_textblock.c | 1 + 1 file changed, 1 insertion(+) 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; } }