From a46fd8242e8d351c532feabde4e596458ea02c5c Mon Sep 17 00:00:00 2001 From: Stephen okra Houston Date: Thu, 11 Aug 2016 14:27:14 -0500 Subject: [PATCH] Ephoto: Place icons correctly. --- src/bin/ephoto_single_browser.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/bin/ephoto_single_browser.c b/src/bin/ephoto_single_browser.c index 2e52f7e..341ae4d 100644 --- a/src/bin/ephoto_single_browser.c +++ b/src/bin/ephoto_single_browser.c @@ -1603,10 +1603,13 @@ _header_text_get(void *data, Evas_Object *obj EINA_UNUSED, const char *part EINA } Evas_Object * -_item_content_get(void *data, Evas_Object *obj EINA_UNUSED, const char *part EINA_UNUSED) +_item_content_get(void *data, Evas_Object *obj EINA_UNUSED, const char *part) { Evas_Object *ic = data; + if (!strcmp(part, "elm.swallow.end")) + return NULL; + return ic; }