mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-27 22:20:24 +00:00
wayland: Only set x, y, and modifiers if the pointers are non-NULL
This commit is contained in:
parent
152dca40d3
commit
1cd65aea53
@ -214,9 +214,12 @@ gdk_device_core_window_at_position (GdkDevice *device,
|
||||
GdkWaylandDevice *wd;
|
||||
|
||||
wd = GDK_DEVICE_CORE(device)->device;
|
||||
*win_x = wd->surface_x;
|
||||
*win_y = wd->surface_y;
|
||||
*mask = wd->modifiers;
|
||||
if (win_x)
|
||||
*win_x = wd->surface_x;
|
||||
if (win_y)
|
||||
*win_y = wd->surface_y;
|
||||
if (mask)
|
||||
*mask = wd->modifiers;
|
||||
|
||||
return wd->pointer_focus;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user