From 6403e36aa06af632c6e20a3453b2d2985e1fb858 Mon Sep 17 00:00:00 2001 From: Tae-Hwan Kim Date: Wed, 8 May 2013 22:22:59 +0900 Subject: [PATCH] [Genlist] Support entry to be calculated eventhough it is outside of viewport. Change-Id: I804f18ff4f669615305f89ba9566f574d8feb268 --- src/lib/elm_genlist.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 545a565..8898c04 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -1981,7 +1981,12 @@ _item_block_position(Item_Block *itb, if ((ELM_RECTS_INTERSECT (it->item->scrl_x, it->item->scrl_y, it->item->w, it->item->h, - cvx, cvy, cvw, cvh))) + cvx, cvy, cvw, cvh)) +#if GENLIST_ENTRY_SUPPORT + || it->item->unrealize_disabled +#endif + ) + { if (itb->realized && !(it->realized)) _item_realize(it, in, EINA_FALSE); -- 2.7.4