Correct the removal of an object.

SVN revision: 34842
This commit is contained in:
Cedric BAIL 2008-06-17 11:24:48 +00:00
parent 3796312acf
commit 2ebe01d957
1 changed files with 1 additions and 1 deletions

View File

@ -320,8 +320,8 @@ Evas_Bool pending_change(void *data, void *gdata)
Evas_Object *obj;
obj = data;
if (obj->delete_me) return 0;
if (!obj->layer) obj->changed = 0;
if (obj->delete_me) obj->changed = 0;
return obj->changed;
}