diff --git a/src/wayland/meta-wayland-touch.c b/src/wayland/meta-wayland-touch.c index 2892510a3..2ec9dce52 100644 --- a/src/wayland/meta-wayland-touch.c +++ b/src/wayland/meta-wayland-touch.c @@ -208,8 +208,8 @@ touch_get_relative_coordinates (MetaWaylandTouch *touch, &event_x, &event_y); } - *x = event_x; - *y = event_y; + *x = event_x / surface->scale; + *y = event_y / surface->scale; }