aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/cursor.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/cursor.c')
-rw-r--r--sway/input/cursor.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/sway/input/cursor.c b/sway/input/cursor.c
index 87811550..44b5ff14 100644
--- a/sway/input/cursor.c
+++ b/sway/input/cursor.c
@@ -606,8 +606,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
606 // Handle existing seat operation 606 // Handle existing seat operation
607 if (seat_doing_seatop(seat)) { 607 if (seat_doing_seatop(seat)) {
608 if (button == seat->seatop_button && state == WLR_BUTTON_RELEASED) { 608 if (button == seat->seatop_button && state == WLR_BUTTON_RELEASED) {
609 seatop_finish(seat); 609 seatop_finish(seat, time_msec);
610 seat_pointer_notify_button(seat, time_msec, button, state);
611 } 610 }
612 if (state == WLR_BUTTON_PRESSED) { 611 if (state == WLR_BUTTON_PRESSED) {
613 state_add_button(cursor, button); 612 state_add_button(cursor, button);
@@ -784,8 +783,7 @@ void dispatch_cursor_button(struct sway_cursor *cursor,
784 // Handle mousedown on a container surface 783 // Handle mousedown on a container surface
785 if (surface && cont && state == WLR_BUTTON_PRESSED) { 784 if (surface && cont && state == WLR_BUTTON_PRESSED) {
786 seat_set_focus_container(seat, cont); 785 seat_set_focus_container(seat, cont);
787 seat_pointer_notify_button(seat, time_msec, button, state); 786 seatop_begin_down(seat, cont, time_msec, button, sx, sy);
788 seatop_begin_down(seat, cont, button, sx, sy);
789 return; 787 return;
790 } 788 }
791 789