From 613167333c8cc121b6eaa6e77cdec7bcd382912c Mon Sep 17 00:00:00 2001 From: Bruno Dilly Date: Fri, 4 Nov 2016 19:51:28 -0200 Subject: [PATCH] elementary/test_entry: resize window on test without it test_efl_ui_text was creating a very small window, with cropped components, etc. So let's create it with a mininum size to be able to properly see this test. --- src/bin/elementary/test_entry.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/elementary/test_entry.c b/src/bin/elementary/test_entry.c index b8a7e62613..e833cf89e2 100644 --- a/src/bin/elementary/test_entry.c +++ b/src/bin/elementary/test_entry.c @@ -3137,5 +3137,6 @@ test_efl_ui_text(void *data EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *eve efl_event_callback_add(en, EFL_UI_TEXT_EVENT_ANCHOR_HOVER_OPENED, my_efl_ui_text_anchor_hover_opened, en); + evas_object_resize(win, 480, 320); evas_object_show(win); }