From: Mike Blumenkrantz Date: Fri, 28 Jul 2017 19:44:43 +0000 (-0400) Subject: elm_table: do not propagate max size X-Git-Tag: upstream/1.20.0~97 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b43a2d55e1b20b992c42d90ab1f9d6b83e76870e;p=platform%2Fupstream%2Fefl.git elm_table: do not propagate max size evas table does not set max size, propagating this triggers unnecessary callbacks @fix --- diff --git a/src/lib/elementary/elm_table.c b/src/lib/elementary/elm_table.c index 907265e..8e53521 100644 --- a/src/lib/elementary/elm_table.c +++ b/src/lib/elementary/elm_table.c @@ -130,14 +130,12 @@ _elm_table_elm_widget_theme_apply(Eo *obj, void *sd EINA_UNUSED) static void _sizing_eval(Evas_Object *obj) { - Evas_Coord minw = 0, minh = 0, maxw = -1, maxh = -1; + Evas_Coord minw = 0, minh = 0; ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd); efl_gfx_size_hint_combined_min_get(wd->resize_obj, &minw, &minh); - evas_object_size_hint_max_get(wd->resize_obj, &maxw, &maxh); evas_object_size_hint_min_set(obj, minw, minh); - evas_object_size_hint_max_set(obj, maxw, maxh); } static void