summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-08 22:32:59 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-08-08 22:32:59 +1000
commitf5dc3ac09d6f44d51b5bb7f8f5ac863cd228afd8 (patch)
tree2aeea57d78619aad0476e53a422218b929718664
parentFocus floating views when beginning move/resize operations (diff)
downloadsway-f5dc3ac09d6f44d51b5bb7f8f5ac863cd228afd8.tar.gz
sway-f5dc3ac09d6f44d51b5bb7f8f5ac863cd228afd8.tar.zst
sway-f5dc3ac09d6f44d51b5bb7f8f5ac863cd228afd8.zip
Don't call send_pointer_notify_button when doing move or resize
-rw-r--r--sway/input/cursor.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 39874b73..3f417e96 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -430,7 +430,6 @@ static void dispatch_cursor_button_floating(struct sway_cursor *cursor,
430 struct sway_seat *seat = cursor->seat; 430 struct sway_seat *seat = cursor->seat;
431 431
432 seat_set_focus(seat, cont); 432 seat_set_focus(seat, cont);
433 seat_pointer_notify_button(seat, time_msec, button, state);
434 433
435 // Deny moving or resizing a fullscreen container 434 // Deny moving or resizing a fullscreen container
436 if (container_is_fullscreen_or_child(cont)) { 435 if (container_is_fullscreen_or_child(cont)) {
@@ -471,6 +470,8 @@ static void dispatch_cursor_button_floating(struct sway_cursor *cursor,
471 seat_begin_resize(seat, floater, button, edge); 470 seat_begin_resize(seat, floater, button, edge);
472 return; 471 return;
473 } 472 }
473
474 seat_pointer_notify_button(seat, time_msec, button, state);
474} 475}
475 476
476/** 477/**