discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=b43a2d55e1b20b992c42d90ab1f9d6b83e76870e
commit b43a2d55e1b20b992c42d90ab1f9d6b83e76870e Author: Mike Blumenkrantz <[email protected]> Date: Fri Jul 28 15:44:43 2017 -0400 elm_table: do not propagate max size evas table does not set max size, propagating this triggers unnecessary callbacks @fix --- src/lib/elementary/elm_table.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lib/elementary/elm_table.c b/src/lib/elementary/elm_table.c index 907265e8c4..8e5352179d 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 --
