Merge pull request #1641 from swaywm/transformed-events

Update input events per swaywm/wlroots#765
This commit is contained in:
Drew DeVault 2018-03-28 14:26:22 -04:00 committed by GitHub
commit 45a50d5afe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -74,8 +74,7 @@ static void handle_cursor_motion_absolute(struct wl_listener *listener,
struct sway_cursor *cursor =
wl_container_of(listener, cursor, motion_absolute);
struct wlr_event_pointer_motion_absolute *event = data;
wlr_cursor_warp_absolute(cursor->cursor, event->device,
event->x_mm / event->width_mm, event->y_mm / event->height_mm);
wlr_cursor_warp_absolute(cursor->cursor, event->device, event->x, event->y);
cursor_update_position(cursor);
cursor_send_pointer_motion(cursor, event->time_msec);
}