evas/evas_events - repeat events should not be affected by children.

Fixed to object passes events to the next object in the same layer if the repeat_events is enabled



SVN revision: 66416
This commit is contained in:
ChunEon Park 2011-12-21 07:55:22 +00:00
parent 16a9961f58
commit 0d3a9bd25c
2 changed files with 10 additions and 2 deletions

View File

@ -573,3 +573,8 @@
* Add new canvas events called just before and after evas rendering
starts and stops.
2011-12-21 ChunEon Park (Hermet)
* Events: repeat events should not be affected by children.
Fixed to object passes events to the next object in the same layer
if the repeat_events is enabled.

View File

@ -72,8 +72,11 @@ _evas_event_object_list_in_get(Evas *e, Eina_List *in,
}
if (norep)
{
if (!obj->repeat_events) *no_rep = 1;
return in;
if (!obj->repeat_events)
{
*no_rep = 1;
return in;
}
}
}
else