From: Taehyub Kim Date: Mon, 11 Dec 2017 07:07:18 +0000 (+0900) Subject: Efl.Ui.Popup.Alert: add message signal process function for scroller size calculation X-Git-Tag: submit/sandbox/upgrade/efl120/20180319.053334~1235 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=54a53a14e74568855a36b0385728a1e666b01bf8;p=platform%2Fupstream%2Fefl.git Efl.Ui.Popup.Alert: add message signal process function for scroller size calculation Summary: add message signal process function for scroller size calculation @fix Reviewers: Jaehyun_Cho, jpeg, thiepha, cedric, woohyun, Blackmole Reviewed By: Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D5618 --- diff --git a/src/lib/elementary/efl_ui_popup_alert.c b/src/lib/elementary/efl_ui_popup_alert.c index bf659db..ea5fbed 100644 --- a/src/lib/elementary/efl_ui_popup_alert.c +++ b/src/lib/elementary/efl_ui_popup_alert.c @@ -100,6 +100,7 @@ _efl_ui_popup_alert_button_set(Eo *obj, Efl_Ui_Popup_Alert_Data *pd, Efl_Ui_Popu { int i; Eo *cur_content; + ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd); if ((type < EFL_UI_POPUP_ALERT_BUTTON_POSITIVE) || (type > EFL_UI_POPUP_ALERT_BUTTON_USER)) { @@ -168,6 +169,7 @@ _efl_ui_popup_alert_button_set(Eo *obj, Efl_Ui_Popup_Alert_Data *pd, Efl_Ui_Popu } elm_layout_signal_emit(obj, "elm,buttons,show", "elm"); + edje_object_message_signal_process(wd->resize_obj); elm_layout_sizing_eval(obj); }