5ed4732737
If an actor is on the boundary of a Stage and the pointer for a device enters the Stage over that actor, the sequence of events currently is: ➔ ENTER (source: actor, related: NULL) ➔ MOTION Thus the Stage never gets an ENTER event. This is a regression from Clutter 1.0. The correct sequence is: ➔ ENTER (source: stage, related: NULL) ➔ ENTER (source: actor, related: stage) ➔ MOTION This also maps to the sequence of events sythesized by Clutter when leaving the Stage through an actor overlapping the Stage boundary. http://bugzilla.moblin.org/show_bug.cgi?id=9781