From 17467d602d0ced9fe6069ba05871f0228319dbf9 Mon Sep 17 00:00:00 2001 From: Emilio Pozuelo Monfort Date: Tue, 19 Nov 2013 12:14:53 +0100 Subject: [PATCH] exposay: move the pointer in our motion handler This is necessary since commit 1959ab. --- src/shell.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/shell.c b/src/shell.c index bf5c704b..82c3cd8e 100644 --- a/src/shell.c +++ b/src/shell.c @@ -5232,11 +5232,14 @@ exposay_layout(struct desktop_shell *shell) } static void -exposay_motion(struct weston_pointer_grab *grab, uint32_t time) +exposay_motion(struct weston_pointer_grab *grab, uint32_t time, + wl_fixed_t x, wl_fixed_t y) { struct desktop_shell *shell = container_of(grab, struct desktop_shell, exposay.grab_ptr); + weston_pointer_move(grab->pointer, x, y); + exposay_pick(shell, wl_fixed_to_int(grab->pointer->x), wl_fixed_to_int(grab->pointer->y));