summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-10-09 21:15:41 -0400
committerFurkan Sahin <furkan-dev@proton.me>2022-10-09 21:15:41 -0400
commit7615d119e3b3fd40ccf997e3d67266f078627973 (patch)
treea052d79aa58c70ee780b92318172a17b0fd3b103
parent376e1d2aeb4437293e8a5dc296162c0280e05e67 (diff)
input: focus floating container when clicked on border
Fixes #7209.
-rw-r--r--sway/input/seatop_default.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c
index 875426bf..3421cf1a 100644
--- a/sway/input/seatop_default.c
+++ b/sway/input/seatop_default.c
@@ -446,6 +446,7 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec,
state == WLR_BUTTON_PRESSED) {
// Via border
if (button == BTN_LEFT && resize_edge != WLR_EDGE_NONE) {
+ seat_set_focus_container(seat, cont);
seatop_begin_resize_floating(seat, cont, resize_edge);
return;
}
@@ -460,6 +461,7 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec,
WLR_EDGE_RIGHT : WLR_EDGE_LEFT;
edge |= cursor->cursor->y > floater->pending.y + floater->pending.height / 2 ?
WLR_EDGE_BOTTOM : WLR_EDGE_TOP;
+ seat_set_focus_container(seat, floater);
seatop_begin_resize_floating(seat, floater, edge);
return;
}