From: Chris Michael Date: Tue, 11 Jun 2013 08:16:19 +0000 (+0100) Subject: Assocate test rectangle with the ecore_evas X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bd2063aa6d1432893f3ec2418bd0571a7e4e49c;p=platform%2Fupstream%2Fenlightenment.git Assocate test rectangle with the ecore_evas Signed-off-by: Chris Michael --- diff --git a/src/bin/e_wayland/e_container.c b/src/bin/e_wayland/e_container.c index df3c858446..9f85c9f7db 100644 --- a/src/bin/e_wayland/e_container.c +++ b/src/bin/e_wayland/e_container.c @@ -69,9 +69,12 @@ e_container_new(E_Manager *man) Evas_Object *o; o = evas_object_rectangle_add(con->bg_evas); + evas_object_color_set(o, 255, 0, 0, 255); evas_object_move(o, 0, 0); evas_object_resize(o, con->w, con->h); evas_object_show(o); + ecore_evas_object_associate(con->bg_ee, o, + ECORE_EVAS_OBJECT_ASSOCIATE_BASE); /* TODO: create zones */