ephysics: fix ball theme group

SVN revision: 77671
This commit is contained in:
Bruno Dilly 2012-10-09 19:59:08 +00:00
parent 4786babcc8
commit 2a7949dd53
3 changed files with 1 additions and 3 deletions

View File

@ -67,7 +67,6 @@ SANDBOX_FILES = \
ephysics_sandbox.edc \
sandbox_misc.edc \
images/background.jpg \
images/ball-blue70.png \
images/ball-custom.png \
images/ball-concrete.png \
images/ball-iron.png \

View File

@ -3,6 +3,5 @@ externals {
}
collections {
#include "balls.edc"
#include "sandbox_misc.edc"
}

View File

@ -705,7 +705,7 @@ _sandie_body_add(Evas_Object *win, EPhysics_World *world, int x, int y)
body_image = elm_image_add(win);
elm_image_file_set(
body_image, PACKAGE_DATA_DIR "/" SANDBOX_THEME ".edj", "big-blue-ball");
body_image, PACKAGE_DATA_DIR "/" SANDBOX_THEME ".edj", "Custom");
evas_object_resize(body_image, 70, 70);
evas_object_move(body_image, x, y);
evas_object_show(body_image);