aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-04-21 15:21:52 +0200
committerGitHub <noreply@github.com>2018-04-21 15:21:52 +0200
commit4386dcb6247640de382e31dada9369b0861594dc (patch)
treed89bcb928037955d3bafa8dce7c9469fed4220a0 /sway/input/seat.c
parent6e6decf38590e85c0c4d72f5215775e604516ad3 (diff)
parent4cf77e1de4b0be8b7d9374f04ff0e191ce22610a (diff)
downloadsway-4386dcb6247640de382e31dada9369b0861594dc.tar.xz
Merge pull request #1837 from emersion/cursor-default-to-current-time
Default to current time when triggering cursor events
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 631a273f..d1fc62c4 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -550,9 +550,7 @@ void seat_set_focus_warp(struct sway_seat *seat,
wlr_output, seat->cursor->cursor->x,
seat->cursor->cursor->y)) {
wlr_cursor_warp(seat->cursor->cursor, NULL, x, y);
- struct timespec now;
- clock_gettime(CLOCK_MONOTONIC, &now);
- cursor_send_pointer_motion(seat->cursor, now.tv_nsec / 1000);
+ cursor_send_pointer_motion(seat->cursor, 0);
}
}
}
@@ -565,9 +563,7 @@ void seat_set_focus_warp(struct sway_seat *seat,
}
if (last_workspace && last_workspace != new_workspace) {
- struct timespec now;
- clock_gettime(CLOCK_MONOTONIC, &now);
- cursor_send_pointer_motion(seat->cursor, now.tv_nsec / 1000);
+ cursor_send_pointer_motion(seat->cursor, 0);
}
seat->has_focus = (container != NULL);