From b78c50b57924e25055fd5d1fe8f8383a4b968f47 Mon Sep 17 00:00:00 2001 From: raster Date: Fri, 23 Mar 2012 07:33:15 +0000 Subject: [PATCH] fix other bring in bug leif found. git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69581 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/elm_genlist.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_genlist.c b/src/lib/elm_genlist.c index e0f2c0f..69a2621 100644 --- a/src/lib/elm_genlist.c +++ b/src/lib/elm_genlist.c @@ -2257,7 +2257,10 @@ _item_block_recalc(Item_Block *itb, } } else - _item_realize(it, in, EINA_FALSE); + { + if (!it->item->mincalcd) changed = EINA_TRUE; + _item_realize(it, in, EINA_FALSE); + } minh += it->item->minh; if (minw < it->item->minw) minw = it->item->minw; in++; -- 2.7.4