From 1f054946ef1168c06dfbe714dbced576b4bc0219 Mon Sep 17 00:00:00 2001 From: Irfan Abdul Date: Tue, 6 Dec 2016 17:19:43 +0530 Subject: [PATCH] [Recents] TSAM-10851 Recent app has stopped after remove app Change-Id: Iaca117fcc5bbbeb384e6143240a540ebef4ea41b --- src/item.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/item.c b/src/item.c index e521c71..e775449 100644 --- a/src/item.c +++ b/src/item.c @@ -493,14 +493,16 @@ void item_destroy(Evas_Object *item) item_inner = elm_object_part_content_unset(item, "txt.app_name"); if (item_inner) { _D("Delete the Label if it is NOT NULL."); - evas_object_del(item_inner); +//this deletion is not requried as item(parent) is deleted +// evas_object_del(item_inner); item_inner = NULL; } icon = elm_object_part_content_unset(item, "img.app_image"); if (icon) { _D("Delete the icon if it is NOT NULL."); - evas_object_del(icon); +//this deletion is not requried as item(parent) is deleted +// evas_object_del(icon); icon = NULL; } Eina_List *l = NULL; -- 2.7.4