diff --git a/legacy/ephysics/data/themes/Makefile.am b/legacy/ephysics/data/themes/Makefile.am index 54738115ee..9c6ab87eb9 100644 --- a/legacy/ephysics/data/themes/Makefile.am +++ b/legacy/ephysics/data/themes/Makefile.am @@ -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 \ diff --git a/legacy/ephysics/data/themes/ephysics_sandbox.edc b/legacy/ephysics/data/themes/ephysics_sandbox.edc index 239b5bf823..3ae0d7d1c0 100644 --- a/legacy/ephysics/data/themes/ephysics_sandbox.edc +++ b/legacy/ephysics/data/themes/ephysics_sandbox.edc @@ -3,6 +3,5 @@ externals { } collections { -#include "balls.edc" #include "sandbox_misc.edc" } diff --git a/legacy/ephysics/src/bin/ephysics_sandbox.c b/legacy/ephysics/src/bin/ephysics_sandbox.c index 16ae34855e..151dd1feff 100644 --- a/legacy/ephysics/src/bin/ephysics_sandbox.c +++ b/legacy/ephysics/src/bin/ephysics_sandbox.c @@ -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);