sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 9e272a7986aa586a73951069aa76068e408a2c3f
parent cc8d318aa1ab380166aa8183dba84a8d2a9ab2aa
Author: Ronan Pigott <rpigott@berkeley.edu>
Date:   Tue, 20 Oct 2020 12:09:38 -0600

tiling_resize: abandon resize if a sibling con dies

Diffstat:
Msway/input/seatop_resize_tiling.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/input/seatop_resize_tiling.c b/sway/input/seatop_resize_tiling.c @@ -107,6 +107,9 @@ static void handle_unref(struct sway_seat *seat, struct sway_container *con) { if (e->con == con) { seatop_begin_default(seat); } + if (e->h_sib == con || e->v_sib == con) { + seatop_begin_default(seat); + } } static const struct sway_seatop_impl seatop_impl = {