test: reflow check boxes in genlist and gengrid focus tests

Without this, the items never get unrealized, except on
window close. This allows better testing of those widgets.
This commit is contained in:
Jean-Philippe Andre 2016-02-01 13:25:01 +09:00
parent bd291fe72a
commit 0f4dc0b222
2 changed files with 8 additions and 2 deletions

View File

@ -1798,7 +1798,10 @@ test_gengrid_focus(void *data EINA_UNUSED,
evas_object_show(fr);
bx_opt = elm_box_add(fr);
elm_box_horizontal_set(bx_opt, EINA_TRUE);
elm_box_layout_set(bx_opt, evas_object_box_layout_flow_horizontal, NULL, NULL);
evas_object_size_hint_weight_set(bx_opt, EVAS_HINT_EXPAND, 0.0);
evas_object_size_hint_align_set(bx_opt, EVAS_HINT_FILL, 0.0);
elm_box_align_set(bx_opt, 0.0, 0.5);
elm_object_content_set(fr, bx_opt);
evas_object_show(bx_opt);

View File

@ -4628,7 +4628,10 @@ _test_genlist_focus_option_panel_create(Evas_Object *win, Evas_Object *bx,
evas_object_show(fr);
bx_opt = elm_box_add(fr);
elm_box_horizontal_set(bx_opt, EINA_TRUE);
elm_box_layout_set(bx_opt, evas_object_box_layout_flow_horizontal, NULL, NULL);
evas_object_size_hint_weight_set(bx_opt, EVAS_HINT_EXPAND, 0.0);
evas_object_size_hint_align_set(bx_opt, EVAS_HINT_FILL, 0.0);
elm_box_align_set(bx_opt, 0.0, 0.5);
elm_object_content_set(fr, bx_opt);
evas_object_show(bx_opt);