Evas textblock: Use the ellipsis char instead of 3 dots for textblock ellipsis.
authortasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 2 Feb 2011 16:24:02 +0000 (16:24 +0000)
committertasn <tasn@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 2 Feb 2011 16:24:02 +0000 (16:24 +0000)
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/evas@56651 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/canvas/evas_object_textblock.c

index 2e68368..997f575 100644 (file)
@@ -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. */