From d124b1e2a95ee6c97f007a06db3df87e41be1d10 Mon Sep 17 00:00:00 2001 From: Tom Hacohen Date: Wed, 2 Feb 2011 16:24:02 +0000 Subject: [PATCH] Evas textblock: Use the ellipsis char instead of 3 dots for textblock ellipsis. SVN revision: 56651 --- legacy/evas/src/lib/canvas/evas_object_textblock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/evas/src/lib/canvas/evas_object_textblock.c b/legacy/evas/src/lib/canvas/evas_object_textblock.c index 2e683685d5..997f5752fe 100644 --- a/legacy/evas/src/lib/canvas/evas_object_textblock.c +++ b/legacy/evas/src/lib/canvas/evas_object_textblock.c @@ -3173,7 +3173,7 @@ static Evas_Object_Textblock_Text_Item * _layout_ellipsis_item_new(Ctxt *c, const Evas_Object_Textblock_Item *cur_it) { Evas_Object_Textblock_Text_Item *ellip_ti; - const Eina_Unicode _ellip_str[4] = { '.', '.', '.', '\0' }; + const Eina_Unicode _ellip_str[2] = { 0x2026, '\0' }; /* Ellipsis char */ /* We assume that the format stack has at least one time, * the only reason it may not have, is more than <>, other * than that, we're safe. The last item is the base format. */