clean a bit more

SVN revision: 52401
This commit is contained in:
Lucas De Marchi 2010-09-18 06:30:37 +00:00
parent 69ffdd1b93
commit fcd5f99652
1 changed files with 8 additions and 8 deletions

View File

@ -95,18 +95,18 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
if (((obj->cur.map) && (obj->cur.map->count == 4) && (obj->cur.usemap)))
{
inside = evas_object_is_in_output_rect(obj, x, y, 1, 1);
if (inside)
if ((inside) && (!evas_map_coords_get(obj->cur.map, x, y,
&(obj->cur.map->mx),
&(obj->cur.map->my), 0)))
{
if (!evas_map_coords_get(obj->cur.map, x, y,
&(obj->cur.map->mx),
&(obj->cur.map->my), 0))
inside = 0;
inside = 0;
}
else
inside = 0;
}
else
inside = evas_object_is_in_output_rect(obj, x, y, 1, 1);
{
inside = evas_object_is_in_output_rect(obj, x, y, 1, 1);
}
if (inside && ((!obj->precise_is_inside) ||
(evas_object_is_inside(obj, x, y))))
{