Missed a spot in pointer constraints

This commit is contained in:
Drew DeVault 2019-01-30 14:06:44 -05:00
parent a6d41254c9
commit 4b87edeba4

View file

@ -450,7 +450,7 @@ static void cursor_motion_absolute(struct sway_cursor *cursor,
double dy = ly - cursor->cursor->y; double dy = ly - cursor->cursor->y;
wlr_relative_pointer_manager_v1_send_relative_motion( wlr_relative_pointer_manager_v1_send_relative_motion(
server.relative_pointer_manager, server.relative_pointer_manager,
cursor->seat->wlr_seat, (uint64_t)time_msec * 1000, dx, dy, dx, dy); cursor->seat->wlr_seat, time_msec, dx, dy, dx, dy);
struct wlr_surface *surface = NULL; struct wlr_surface *surface = NULL;
double sx, sy; double sx, sy;