Elm: Be sure to set a size for the window.

Previously, if you clicked the icon animation test if would appear to
fail as the window was being created with a 0 size (and never
resized). This just makes sure that the window gets resized to
"something" so that it will actually show up (rather than a user just
blindly clicking the test and wondering why nothing is happening).



SVN revision: 75525
This commit is contained in:
Christopher Michael 2012-08-22 08:37:08 +00:00
parent 2e83d89fc8
commit 526c871182
1 changed files with 1 additions and 0 deletions

View File

@ -44,6 +44,7 @@ test_icon_animated(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *eve
evas_object_smart_callback_add(ic, "clicked", icon_clicked, ic);
evas_object_resize(win, 200, 200);
evas_object_show(win);
}
#endif