Skip to content

Commit

Permalink
tiling_resize: abandon resize if a sibling con dies
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronan Pigott authored and emersion committed Oct 20, 2020
1 parent cc8d318 commit 9e272a7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sway/input/seatop_resize_tiling.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 9e272a7

Please sign in to comment.