From e65731b755709eba6ca869ce36e27a26564d337b Mon Sep 17 00:00:00 2001 From: Taehyub Kim Date: Thu, 26 Oct 2017 16:33:31 +0900 Subject: [PATCH] efl_ui_popup: add _calc_align function in sizing eval function Summary: add _calc_align function in sizing eval function to show popup correctly. Reviewers: Jaehyun_Cho, jpeg, cedric, thiepha, Blackmole, woohyun Reviewed By: Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D5373 --- src/lib/elementary/efl_ui_popup.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/elementary/efl_ui_popup.c b/src/lib/elementary/efl_ui_popup.c index c8f4b56..7946881 100644 --- a/src/lib/elementary/efl_ui_popup.c +++ b/src/lib/elementary/efl_ui_popup.c @@ -245,6 +245,8 @@ _efl_ui_popup_elm_layout_sizing_eval(Eo *obj, Efl_Ui_Popup_Data *pd EINA_UNUSED) new_size.w = (minw > size.w ? minw : size.w); new_size.h = (minh > size.h ? minh : size.h); efl_gfx_size_set(obj, new_size); + + _calc_align(obj); } EOLIAN static void -- 2.7.4