summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruno Dilly <bdilly@profusion.mobi>2016-11-04 19:51:28 -0200
committerBruno Dilly <bdilly@profusion.mobi>2016-11-04 19:51:28 -0200
commit613167333c8cc121b6eaa6e77cdec7bcd382912c (patch)
tree01886539a06d0760a63a6824234e1a44247ba47a
parentf869cd580e47bd4783dfedbefc91ddf452ed135d (diff)
downloadefl-613167333c8cc121b6eaa6e77cdec7bcd382912c.tar.gz
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.
-rw-r--r--src/bin/elementary/test_entry.c1
1 files changed, 1 insertions, 0 deletions
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);
}