Clean it a bit to be easier to understand

SVN revision: 52400
This commit is contained in:
Lucas De Marchi 2010-09-18 06:30:30 +00:00
parent f62bcf1ff1
commit 69ffdd1b93
1 changed files with 13 additions and 14 deletions

View File

@ -60,21 +60,20 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
if (!evas_map_coords_get(obj->cur.map, x, y,
&(obj->cur.map->mx),
&(obj->cur.map->my), 0))
inside = 0;
{
inside = 0;
}
else
parmap = 1;
}
else
inside = 0;
if (inside)
{
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);
{
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);
}
}
}
else