elm: Fix typo in copy and paste in efl_ui_list precise layouter

Fix comparison between height and width instead of width and width.

CID 1383711
This commit is contained in:
Felipe Magno de Almeida 2017-12-14 22:23:07 -02:00
parent 0322ff14a6
commit 9a120e3e72
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ _item_min_calc(Efl_Ui_List_Precise_Layouter_Data *pd, Efl_Ui_List_LayoutItem* it
min.w += pad[0] + pad[1];
min.h += pad[2] + pad[3];
if (item->min.h == min.h && item->min.w == min.h)
if (item->min.h == min.h && item->min.w == min.w)
return;
pd->min.h += min.h - item->min.h;