discomfitor pushed a commit to branch efl-1.19.

http://git.enlightenment.org/core/efl.git/commit/?id=fcd769fe2e1e5fb6cddc231c6a242c8573f3fcb4

commit fcd769fe2e1e5fb6cddc231c6a242c8573f3fcb4
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 09801e21c0..b0fe4e4108 100644
--- a/src/lib/elementary/elm_table.c
+++ b/src/lib/elementary/elm_table.c
@@ -121,14 +121,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

-- 


Reply via email to