discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=60020c321187190e5314f6340a34541a3aeaedf8

commit 60020c321187190e5314f6340a34541a3aeaedf8
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Tue Jan 5 13:18:03 2016 -0500

    layout: do not unset max size hint during sizing eval
    
    previously-applied max size hints should not be unset; these are only
    able to be set externally from a parent object, so don't overwrite them
    internally
    
    @fix
---
 src/lib/elm_layout.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/lib/elm_layout.c b/src/lib/elm_layout.c
index 972ffa7..bc99d75 100644
--- a/src/lib/elm_layout.c
+++ b/src/lib/elm_layout.c
@@ -121,7 +121,6 @@ _sizing_eval(Evas_Object *obj, Elm_Layout_Smart_Data *sd)
    edje_object_size_min_restricted_calc(wd->resize_obj, &minw, &minh,
                                         rest_w, rest_h);
    evas_object_size_hint_min_set(obj, minw, minh);
-   evas_object_size_hint_max_set(obj, -1, -1);
 
    sd->restricted_calc_w = sd->restricted_calc_h = EINA_FALSE;
 }

-- 


Reply via email to