aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/transaction.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-27 19:12:55 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-27 19:12:55 +1000
commitd0dca7f35ee0a6e6574c1ed893ec8546f5233e5c (patch)
tree2466f140692942b1179fbb9d06d9901d95e9e6d8 /sway/desktop/transaction.c
parentMerge pull request #2995 from colemickens/uninit-warnings (diff)
downloadsway-d0dca7f35ee0a6e6574c1ed893ec8546f5233e5c.tar.gz
sway-d0dca7f35ee0a6e6574c1ed893ec8546f5233e5c.tar.zst
sway-d0dca7f35ee0a6e6574c1ed893ec8546f5233e5c.zip
Don't reset cursor during mouse operations
Diffstat (limited to 'sway/desktop/transaction.c')
-rw-r--r--sway/desktop/transaction.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sway/desktop/transaction.c b/sway/desktop/transaction.c
index 955b05d6..c3efb210 100644
--- a/sway/desktop/transaction.c
+++ b/sway/desktop/transaction.c
@@ -301,7 +301,9 @@ static void transaction_apply(struct sway_transaction *transaction) {
301 if (root->outputs->length) { 301 if (root->outputs->length) {
302 struct sway_seat *seat; 302 struct sway_seat *seat;
303 wl_list_for_each(seat, &server.input->seats, link) { 303 wl_list_for_each(seat, &server.input->seats, link) {
304 cursor_rebase(seat->cursor); 304 if (seat->operation == OP_NONE) {
305 cursor_rebase(seat->cursor);
306 }
305 } 307 }
306 } 308 }
307} 309}