From 499ee62980b523d032ca7abc29dec76ee686c93c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Wed, 17 Jul 2019 13:30:11 -0400 Subject: [PATCH] efl_ui/table: emit EFL_PACK_EVENT_LAYOUT_UPDATED on layout updates this should be emitted. Reviewed-by: Cedric BAIL Differential Revision: https://phab.enlightenment.org/D9343 --- src/lib/elementary/efl_ui_table_layout.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elementary/efl_ui_table_layout.c b/src/lib/elementary/efl_ui_table_layout.c index ac90b63876..391878019e 100644 --- a/src/lib/elementary/efl_ui_table_layout.c +++ b/src/lib/elementary/efl_ui_table_layout.c @@ -383,4 +383,5 @@ _efl_ui_table_custom_layout(Efl_Ui_Table *ui_table, Efl_Ui_Table_Data *pd) efl_gfx_hint_size_restricted_min_set(ui_table, EINA_SIZE2D(table_calc.want[0], table_calc.want[1])); + efl_event_callback_call(ui_table, EFL_PACK_EVENT_LAYOUT_UPDATED, NULL); }