wayland: Make gdk_wayland_device_get_focus() work on touch
So we can figure out the focus for the master device. https://bugzilla.gnome.org/show_bug.cgi?id=759309
This commit is contained in:
@@ -488,12 +488,17 @@ device_emit_grab_crossing (GdkDevice *device,
|
|||||||
static GdkWindow *
|
static GdkWindow *
|
||||||
gdk_wayland_device_get_focus (GdkDevice *device)
|
gdk_wayland_device_get_focus (GdkDevice *device)
|
||||||
{
|
{
|
||||||
GdkWaylandDeviceData *wayland_device = GDK_WAYLAND_DEVICE (device)->device;
|
GdkWaylandSeat *wayland_seat = GDK_WAYLAND_DEVICE (device)->device;
|
||||||
|
|
||||||
if (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
|
if (device == wayland_seat->master_keyboard)
|
||||||
return wayland_device->keyboard_focus;
|
return wayland_seat->keyboard_focus;
|
||||||
|
else if (device == wayland_seat->master_pointer)
|
||||||
|
return wayland_seat->pointer_focus;
|
||||||
|
else if (device == wayland_seat->touch_master &&
|
||||||
|
GDK_WAYLAND_DEVICE(device)->emulating_touch)
|
||||||
|
return GDK_WAYLAND_DEVICE(device)->emulating_touch->window;
|
||||||
else
|
else
|
||||||
return wayland_device->pointer_focus;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static GdkGrabStatus
|
static GdkGrabStatus
|
||||||
|
|||||||
Reference in New Issue
Block a user