cursor-tracker: Get the GDK (X11) pointer position in floats, not ints

This makes X11 consistent with Wayland which already uses floats.

https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1519
This commit is contained in:
Daniel van Vugt 2020-10-28 17:31:21 +08:00 committed by Georges Basile Stavracas Neto
parent aff14eab86
commit 514b2ff424

View File

@ -471,13 +471,13 @@ get_pointer_position_gdk (graphene_point_t *point,
GdkSeat *gseat;
GdkDevice *gdevice;
GdkScreen *gscreen;
int x, y;
double x, y;
gseat = gdk_display_get_default_seat (gdk_display_get_default ());
gdevice = gdk_seat_get_pointer (gseat);
/* Even if point is NULL we need this to get gscreen */
gdk_device_get_position (gdevice, &gscreen, &x, &y);
gdk_device_get_position_double (gdevice, &gscreen, &x, &y);
if (point)
{