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-21 14:01:48 +0900
commit2ee8766303a59eed2c61185ebfe13d2cd4345c13 (patch)
tree9c9aeb65d84c3568ed685e9ae4467dd2171cbad7
parent6e87b9c6ad1e8ef3318d27f29b4d9b90a4a17aae (diff)
downloadefl-2ee8766303a59eed2c61185ebfe13d2cd4345c13.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);
}