efl_ui_popup: make popup size expandable

Summary: make popup size expandable

Reviewers: Jaehyun_Cho, jpeg, cedric, thiepha, Blackmole, woohyun

Differential Revision: https://phab.enlightenment.org/D5107
This commit is contained in:
Taehyub Kim 2017-08-17 19:27:53 +09:00 committed by Jaehyun Cho
parent 0005b3105e
commit b38ad0971c
1 changed files with 10 additions and 0 deletions

View File

@ -183,6 +183,16 @@ _efl_ui_popup_elm_layout_sizing_eval(Eo *obj, Efl_Ui_Popup_Data *pd EINA_UNUSED)
edje_object_size_min_restricted_calc
(wd->resize_obj, &minw, &minh, minw, minh);
evas_object_size_hint_min_set(obj, minw, minh);
Evas_Coord w, h;
evas_object_geometry_get(obj, NULL, NULL, &w, &h);
if ((minw > w) && (minh < h))
evas_object_resize(obj, minw, h);
else if ((minw < w) && (minh > h))
evas_object_resize(obj, w, minh);
else if ((minw > w) && (minh > h))
evas_object_resize(obj, minw, minh);
}
EOLIAN static void