Don't set parmap for the other objects

We are iterating EINA_INLIST_REVERSE_FOREACH(list, obj) in a recursive
function. Don't mark the other objects as havemap_parent if the first
in the list has it.



SVN revision: 52403
This commit is contained in:
Lucas De Marchi 2010-09-18 06:30:51 +00:00
parent bcc9b853ed
commit 6f1e1a950e
1 changed files with 1 additions and 2 deletions

View File

@ -65,14 +65,13 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
}
else
{
parmap = 1;
in = _evas_event_object_list_in_get
(e, in,
evas_object_smart_members_get_direct(obj),
stop,
obj->cur.geometry.x + obj->cur.map->mx,
obj->cur.geometry.y + obj->cur.map->my,
&norep, parmap);
&norep, 1);
}
}
}