sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 4b87edeba4a925d604803386009f743ef53aecb0
parent a6d41254c90c1471326e5df94b939a12844d9be6
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed, 30 Jan 2019 14:06:44 -0500

Missed a spot in pointer constraints

Diffstat:
Msway/input/cursor.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/input/cursor.c b/sway/input/cursor.c @@ -450,7 +450,7 @@ static void cursor_motion_absolute(struct sway_cursor *cursor, double dy = ly - cursor->cursor->y; wlr_relative_pointer_manager_v1_send_relative_motion( 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; double sx, sy;