From d0dca7f35ee0a6e6574c1ed893ec8546f5233e5c Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Sat, 27 Oct 2018 19:12:55 +1000 Subject: [PATCH] Don't reset cursor during mouse operations --- sway/desktop/transaction.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c index 955b05d64..c3efb210f 100644 --- a/sway/desktop/transaction.c +++ b/sway/desktop/transaction.c @@ -301,7 +301,9 @@ static void transaction_apply(struct sway_transaction *transaction) { if (root->outputs->length) { struct sway_seat *seat; wl_list_for_each(seat, &server.input->seats, link) { - cursor_rebase(seat->cursor); + if (seat->operation == OP_NONE) { + cursor_rebase(seat->cursor); + } } } }