jaehyun pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=b1eac4c46ba00528ae28a8b41c490dff95c66140

commit b1eac4c46ba00528ae28a8b41c490dff95c66140
Author: Taehyub Kim <taehyub....@samsung.com>
Date:   Thu Aug 31 13:17:56 2017 +0900

    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
---
 src/lib/elementary/efl_ui_popup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
 }
 

-- 


Reply via email to