From: prince Date: Fri, 12 Apr 2013 09:51:59 +0000 (+0530) Subject: [Elm_genlist] forcing the edje signal process of item's content during item unrealiza... X-Git-Tag: 2.1b_release~14 X-Git-Url: http://review.tizen.org/git/?p=framework%2Fuifw%2Felementary.git;a=commitdiff_plain;h=e328530f91e8284bafff664058f916bb73ab62c6 [Elm_genlist] forcing the edje signal process of item's content during item unrealization. Change-Id: I95b9f675456680a360231a2081aef8f821c291d3 --- diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 11c93b0..804f59c 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -579,6 +579,10 @@ _item_unrealize(Elm_Gen_Item *it, it->item->swipe_timer = NULL; } + //Forcing the edje signal process for item's content. + EINA_LIST_FOREACH(it->content_objs, l, content) + edje_object_message_signal_process(elm_layout_edje_get(content)); + // Free view item EINA_LIST_FOREACH(it->texts, l, part) edje_object_part_text_set(VIEW(it), part, NULL);