efl_ui_layout: fix typo in _sizing_eval

This commit is contained in:
Jaehyun Cho 2019-08-14 10:28:26 +09:00
parent 7ab04abf27
commit b8d1747382
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ _sizing_eval(Evas_Object *obj, Efl_Ui_Layout_Data *sd, Elm_Layout_Data *ld)
if (ld->restricted_calc_w) if (ld->restricted_calc_w)
rest_w = MIN(wd->w, rest_w); rest_w = MIN(wd->w, rest_w);
if (ld->restricted_calc_h) if (ld->restricted_calc_h)
rest_h = MIN(wd->h, rest_w); rest_h = MIN(wd->h, rest_h);
} }
edje_object_size_min_restricted_calc(wd->resize_obj, &minw, &minh, edje_object_size_min_restricted_calc(wd->resize_obj, &minw, &minh,