From 14e887bc3dee8441ba51a593ccdc49e381d33f82 Mon Sep 17 00:00:00 2001 From: Tudor Brindus Date: Sat, 6 Jun 2020 22:43:02 -0400 Subject: input: tweak resize behavior to not change tab focus on border click If a resize is triggered on a tabbed or stacked container, change focus to the tab which already had inactive focus, rather than to the tab whose border was clicked -- otherwise, we'd change the active tab when the user probably just wanted to resize. --- sway/input/seatop_default.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'sway/input/seatop_default.c') diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c index 3ef816fd..6e3c7744 100644 --- a/sway/input/seatop_default.c +++ b/sway/input/seatop_default.c @@ -327,7 +327,16 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec, // Handle tiling resize via border if (cont && resize_edge && button == BTN_LEFT && state == WLR_BUTTON_PRESSED && !is_floating) { - seat_set_focus_container(seat, cont); + // If a resize is triggered on a tabbed or stacked container, change + // focus to the tab which already had inactive focus -- otherwise, we'd + // change the active tab when the user probably just wanted to resize. + struct sway_container *cont_to_focus = cont; + enum sway_container_layout layout = container_parent_layout(cont); + if (layout == L_TABBED || layout == L_STACKED) { + cont_to_focus = seat_get_focus_inactive_view(seat, &cont->parent->node); + } + + seat_set_focus_container(seat, cont_to_focus); seatop_begin_resize_tiling(seat, cont, edge); return; } -- cgit v1.2.3