summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Hacohen <tom@stosb.com>2014-02-10 14:10:54 +0000
committerTom Hacohen <tom@stosb.com>2014-02-10 14:19:34 +0000
commit5464441979cb0baa4b0e707921c89b72389d1442 (patch)
tree2eb6c1806d3b274de5d1820e2402e9394d62cd7e
parent3cbde91cadaf9f49fb90a2b9970e197f9c2ea0ec (diff)
downloadefl-5464441979cb0baa4b0e707921c89b72389d1442.tar.gz
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.
-rw-r--r--src/lib/evas/canvas/evas_object_textblock.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/evas/canvas/evas_object_textblock.c b/src/lib/evas/canvas/evas_object_textblock.c
index 3ea0d08641..f8d70d803f 100644
--- a/src/lib/evas/canvas/evas_object_textblock.c
+++ b/src/lib/evas/canvas/evas_object_textblock.c
@@ -4561,6 +4561,7 @@ _layout_par(Ctxt *c)
}
else
{
+ ititr->visually_deleted = EINA_FALSE;
prev_it = ititr;
}
}