multibuttonentry: Fix MBE item box min size calc error.

Summary:
Before item packed again in mbe box. box calc own min height.
In this case, there is no need to increase line number when  entry is box item.
Actually the min height of box calculated wrong here.

@fix

Test Plan:
Give a color to internal box.
Then items add.
Check the internal box area got a wrong height value.

Reviewers: Hermet, cedric

Differential Revision: https://phab.enlightenment.org/D3102
This commit is contained in:
woochan lee 2015-10-01 19:50:23 +09:00 committed by ChunEon Park
parent 4d3a21fb44
commit a191fdb908
1 changed files with 1 additions and 10 deletions

View File

@ -1256,7 +1256,7 @@ _box_min_size_calculate(Evas_Object *box,
{
Evas_Coord mnw, mnh, w, minw, minh = 0, linew = 0, lineh = 0;
int line_num;
Eina_List *l, *l_next;
Eina_List *l;
Evas_Object_Box_Option *opt;
evas_object_geometry_get(box, NULL, NULL, &w, NULL);
@ -1276,15 +1276,6 @@ _box_min_size_calculate(Evas_Object *box,
{
linew = mnw;
line_num++;
l_next = eina_list_next(l);
opt = eina_list_data_get(l_next);
if (l_next && opt && opt->obj &&
eo_isa(opt->obj, ELM_ENTRY_CLASS))
{
linew = 0;
line_num++;
}
}
if ((linew != 0) && (l != eina_list_last(priv->children)))