From c0eb845dabe8b366155425c790a1ef44bb8b3d54 Mon Sep 17 00:00:00 2001 From: Tae-Hwan Kim Date: Tue, 16 Apr 2013 16:15:13 +0900 Subject: [PATCH] [Genlist] Fix incorret OR Change-Id: I9c1b118f092f407d7994a40365bd2cafd9ff634b --- src/lib/elm_genlist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index 60a4703..3ff34b5 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -593,7 +593,7 @@ _item_unrealize(Elm_Gen_Item *it, } /* - * This make too may error message when content is not layout based or + * This make too may error message when content is not layout based or * content does not impelement message siganal process. * This reduces scrolling performance :( * Before uncomment this, we should fix above. @@ -1561,7 +1561,7 @@ _item_realize(Elm_Gen_Item *it, } it->item->order_num_in = in; - if (it->item->nocache_once | it->item->nocache || + if (it->item->nocache_once || it->item->nocache || it->item->type == ELM_GENLIST_ITEM_TREE || it->parent || !_item_cache_pop(it)) { -- 2.7.4