test_explode: use evas_object_clipees_has instead

fixes memory leak and better performance
This commit is contained in:
Amitesh Singh 2015-11-02 08:57:51 +05:30
parent 56400822f0
commit c86b0c08c4
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ explode_obj(Evas_Object *obj, int n)
EINA_LIST_FREE(children, o)
{
if (!evas_object_visible_get(o)) continue;
if (evas_object_clipees_get(o)) continue;
if (evas_object_clipees_has(o)) continue;
n = explode_obj(o, n);
}