[mutter/wip/carlosg/grabs-pt1: 14/23] clutter: Make crossing events unstoppable
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [mutter/wip/carlosg/grabs-pt1: 14/23] clutter: Make crossing events unstoppable
- Date: Thu, 25 Nov 2021 10:21:47 +0000 (UTC)
commit 8c854c993c662cb2854d3e69b00023ef3919b8f1
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Oct 26 16:23:03 2021 +0200
clutter: Make crossing events unstoppable
These events are not meant to be ever silenced away, every actor
that is meant to receive one should do so. Make it sure that those
events cannot be stopped, despite the event signal handlers return
values.
This opens the debate about whether crossing events should be
ClutterEvents, since they are more and more uncommon at being one,
maybe this notification mechanism should be taken away from the
event machinery, but that's something for future refactors.
clutter/clutter/clutter-actor.c | 3 +++
1 file changed, 3 insertions(+)
---
diff --git a/clutter/clutter/clutter-actor.c b/clutter/clutter/clutter-actor.c
index 82fb50ca42..415624e6e7 100644
--- a/clutter/clutter/clutter-actor.c
+++ b/clutter/clutter/clutter-actor.c
@@ -12384,6 +12384,9 @@ clutter_actor_event (ClutterActor *actor,
handled:
g_object_unref (actor);
+ if (event->type == CLUTTER_ENTER || event->type == CLUTTER_LEAVE)
+ return CLUTTER_EVENT_PROPAGATE;
+
return retval;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]