summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaehyub Kim <taehyub.kim@samsung.com>2017-08-31 13:17:56 +0900
committerJaehyun Cho <jae_hyun.cho@samsung.com>2017-11-28 17:15:42 +0900
commitb1eac4c46ba00528ae28a8b41c490dff95c66140 (patch)
tree70f9b03e554deb25d2a08b8f8408b3a900138c2e
parentd3a14d08b09a2200b9a85c7ad4d93914a14f6de2 (diff)
downloadefl-b1eac4c46ba00528ae28a8b41c490dff95c66140.tar.gz
efl_ui_popup: cover the corner case of popup sizing evaluation
Summary: cover the corner case of popup sizing evaluation Test Plan: 1. run elementary_test -to efluipopup Reviewers: Jaehyun_Cho, jpeg, thiepha, Blackmole, woohyun, cedric Reviewed By: Jaehyun_Cho Differential Revision: https://phab.enlightenment.org/D5146
-rw-r--r--src/lib/elementary/efl_ui_popup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_popup.c b/src/lib/elementary/efl_ui_popup.c
index 1f405769f5..7de893e5de 100644
--- a/src/lib/elementary/efl_ui_popup.c
+++ b/src/lib/elementary/efl_ui_popup.c
@@ -191,7 +191,7 @@ _efl_ui_popup_elm_layout_sizing_eval(Eo *obj, Efl_Ui_Popup_Data *pd EINA_UNUSED)
evas_object_resize(obj, minw, h);
else if ((minw < w) && (minh > h))
evas_object_resize(obj, w, minh);
- else if ((minw > w) && (minh > h))
+ else if ((minw >= w) && (minh >= h))
evas_object_resize(obj, minw, minh);
}