summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2016-01-05 13:18:03 -0500
committerMike Blumenkrantz <zmike@osg.samsung.com>2016-01-06 17:09:01 -0500
commit60020c321187190e5314f6340a34541a3aeaedf8 (patch)
tree072824833e316776e40b4a39b4a766eb471fca15
parent1eeb401a3bafb9636a91dd1393cf61e50badfaf3 (diff)
downloadelementary-60020c321187190e5314f6340a34541a3aeaedf8.tar.gz
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
-rw-r--r--src/lib/elm_layout.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib/elm_layout.c b/src/lib/elm_layout.c
index 972ffa7e3..bc99d75fa 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;
}