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
This commit is contained in:
Mike Blumenkrantz 2016-01-05 13:18:03 -05:00
parent ac06bfdb22
commit 3d91738f35
1 changed files with 0 additions and 1 deletions

View File

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