From 680d817ffea69e106fb67dd12e2c92187ceca4e7 Mon Sep 17 00:00:00 2001 From: Yun ilkook Date: Thu, 22 Sep 2011 10:46:54 +0900 Subject: [PATCH] [*][store] Fixed the unrealize problem of added a item Change-Id: I48669e506a3007ea1f503c3e8120672bc3e3df89 --- src/lib/elm_store.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_store.c b/src/lib/elm_store.c index 25eb265..a2d5d38 100644 --- a/src/lib/elm_store.c +++ b/src/lib/elm_store.c @@ -1253,7 +1253,7 @@ _item_realized(void *data , Evas_Object *obj __UNUSED__, void *event_info) Elm_Store_Item *sti = elm_genlist_item_data_get(gli); if (!sti) return; - if (st->live && sti->item) + if (st->live) { if (!sti->data) _item_job_add(sti); } @@ -1269,7 +1269,7 @@ _item_unrealized(void *data , Evas_Object *obj __UNUSED__, void *event_info) Elm_Store_Item *sti = elm_genlist_item_data_get(gli); if (!sti) return; - if (st->live && sti->item) + if (st->live) { if (sti->eval_job) { -- 2.7.4