From 819b5e33b752f2af315a6c11a799db7915d6ca77 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Andre Date: Mon, 17 Apr 2017 14:13:02 +0900 Subject: [PATCH] ui.grid: Fix EO API usage in elm_test Window doesn't implement pack API but content API instead. --- src/bin/elementary/test_grid_static.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/elementary/test_grid_static.c b/src/bin/elementary/test_grid_static.c index ef3e51784f..fefbb71e39 100644 --- a/src/bin/elementary/test_grid_static.c +++ b/src/bin/elementary/test_grid_static.c @@ -122,7 +122,7 @@ test_grid_static(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *eve efl_gfx_size_hint_weight_set(efl_added, 1, 1), efl_pack_layout_engine_set(efl_added, EFL_UI_GRID_STATIC_CLASS, NULL)); } - efl_pack(win, gd); + efl_content_set(win, gd); api->data.grid = gd; efl_gfx_visible_set(gd, 1);