From 951f05078306dc5bc2039506cc0c1d11d377a7dd Mon Sep 17 00:00:00 2001 From: Daniel Juyung Seo Date: Wed, 2 Feb 2011 16:02:23 +0900 Subject: [PATCH] [elm_genlist.c] Fixed visability check routine. --- src/lib/elm_genlist.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 50e47d7..d03cb98 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -2387,9 +2387,8 @@ _item_block_position(Item_Block *itb, it->scrl_x = itb->x + it->x - it->wd->pan_x + ox; it->scrl_y = itb->y + it->y - it->wd->pan_y + oy; - if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it )) - vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h, - cvx, cvy, cvw, cvh)); + vis = (ELM_RECTS_INTERSECT(it->scrl_x, it->scrl_y, it->w, it->h, + cvx, cvy, cvw, cvh)); if (it->flags != ELM_GENLIST_ITEM_GROUP || (it->wd->reorder_it )) { if ((itb->realized) && (!it->realized)) -- 2.7.4