From 2a7949dd53e0ae1d7aead1b8311c8265f5bf3458 Mon Sep 17 00:00:00 2001 From: Bruno Dilly Date: Tue, 9 Oct 2012 19:59:08 +0000 Subject: [PATCH] ephysics: fix ball theme group SVN revision: 77671 --- legacy/ephysics/data/themes/Makefile.am | 1 - legacy/ephysics/data/themes/ephysics_sandbox.edc | 1 - legacy/ephysics/src/bin/ephysics_sandbox.c | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) 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);