From b72d8a215433e68332afa03a9b80bf0b02b4c599 Mon Sep 17 00:00:00 2001 From: JinYong Park Date: Fri, 12 Jan 2018 13:40:49 +0900 Subject: [PATCH] popup: If popup's parent is resized, popup need to resized, too When window's size is not enough to show popup, popup resize smaller to show it in appropriate size. But if window resize larger enough to show popup, popup is locked in small size. On the contrary to this case, if window resize too smaller, popup has still large size, so popup doesn't display properly. @tizen_fix original patch : https://review.tizen.org/gerrit/#/c/69139/ Change-Id: Iff33eb94e4d385cf57f614037c8289e34c075871 Signed-off-by: JinYong Park --- src/lib/elementary/elc_popup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elementary/elc_popup.c b/src/lib/elementary/elc_popup.c index ee8aeda..28ef840 100644 --- a/src/lib/elementary/elc_popup.c +++ b/src/lib/elementary/elc_popup.c @@ -296,6 +296,7 @@ _notify_resize_cb(void *data, ELM_POPUP_CHECK(popup); + _scroller_size_calc(popup); elm_layout_sizing_eval(popup); } -- 2.7.4