[mutter/wip/carlosg/crossings: 3/9] wayland: Don't use CLUTTER_LEAVE source actor for repick




commit aa68042d67389b87f3a5d12106d5e8e3bf2847e3
Author: Carlos Garnacho <carlosg gnome org>
Date:   Tue Dec 22 17:24:31 2020 +0100

    wayland: Don't use CLUTTER_LEAVE source actor for repick
    
    This is the actor receiving the event, therefore precisely not the
    actor the pointer is on. We should avoid this event's source here.
    
    Fixes: https://gitlab.gnome.org/GNOME/mutter/-/issues/1584

 src/wayland/meta-wayland-pointer.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/wayland/meta-wayland-pointer.c b/src/wayland/meta-wayland-pointer.c
index 0b563efcce..545b04d323 100644
--- a/src/wayland/meta-wayland-pointer.c
+++ b/src/wayland/meta-wayland-pointer.c
@@ -586,7 +586,7 @@ repick_for_event (MetaWaylandPointer *pointer,
   ClutterActor *actor;
   MetaWaylandSurface *surface;
 
-  if (for_event)
+  if (for_event && clutter_event_type (for_event) != CLUTTER_LEAVE)
     actor = clutter_event_get_source (for_event);
   else
     actor = clutter_stage_get_device_actor (stage, pointer->device, NULL);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]