From 1160e12c0c78892142200a89e1881b3f47818ee6 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Sun, 9 Feb 2014 17:35:57 +0100 Subject: [PATCH] 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); }