[access][genlist] show hidden item, do not check intersect
authorShinwoo Kim <cinoo.kim@samsung.com>
Wed, 10 Apr 2013 11:25:57 +0000 (20:25 +0900)
committerSungho Kwak <sungho1.kwak@samsung.com>
Sun, 14 Apr 2013 09:38:20 +0000 (18:38 +0900)
Change-Id: Ie916f749ca795985d14b38708b3f7ba103d91f53

src/lib/elm_genlist.c

index aa2f5be..e92dcd8 100644 (file)
@@ -2579,11 +2579,7 @@ _elm_genlist_smart_focus_next(const Evas_Object *obj,
                   if (it->realized)
                     {
                        evas_object_geometry_get(it->base.view, &x, &y, &w, &h);
-
-                       /* check item which displays more than half of its size */
-                       if (ELM_RECTS_INTERSECT
-                             (x + (w / 2), y + (h / 2), 0, 0, sx, sy, sw, sh))
-                         items = eina_list_append(items, it->base.access_obj);
+                       items = eina_list_append(items, it->base.access_obj);
 
                        if (!it->base.access_order) continue;