commit 3b3e0560beb9a44f038736fd4c344052fdfe3f81
parent 5b454ac441a5ec35d6370bb6391b0f8f2f4c58aa
Author: Alex Maese <memaese@hotmail.com>
Date: Fri, 26 Apr 2019 13:46:31 -0500
Fix a silly mistake
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c
@@ -461,7 +461,7 @@ static void handle_motion(struct sway_seat *seat, uint32_t time_msec,
cursor_do_rebase(cursor, time_msec, node, surface, sx, sy);
if (surface && seat_is_input_allowed(cursor->seat, surface)) {
- wlr_seat_pointer_notify_motion(wlr_seat, time_msec, sx, sy);
+ wlr_seat_pointer_notify_motion(seat->wlr_seat, time_msec, sx, sy);
}
struct sway_drag_icon *drag_icon;