bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/misc/entrance.git/commit/?id=1160e12c0c78892142200a89e1881b3f47818ee6
commit 1160e12c0c78892142200a89e1881b3f47818ee6 Author: Marcel Hollerbach <marcel.hollerb...@stzedn.de> Date: Sun Feb 9 17:35:57 2014 +0100 Bug Fix, actions are not having any icons ! --- src/bin/entrance_gui.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/entrance_gui.c b/src/bin/entrance_gui.c index 0aa6462..2073305 100755 --- a/src/bin/entrance_gui.c +++ b/src/bin/entrance_gui.c @@ -583,6 +583,8 @@ _entrance_gui_action_text_get(void *data, Evas_Object *obj EINA_UNUSED, const ch { Entrance_Action *ea; ea = data; + if ((part) && (!strcmp(part, "icon"))) + return NULL; return strdup(ea->label); } --