From 403905c11bf9996cf1937ec0067f33d013e78305 Mon Sep 17 00:00:00 2001 From: Ryan Dwyer Date: Tue, 11 Sep 2018 23:24:57 +1000 Subject: Fix line length --- sway/input/seat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sway/input/seat.c b/sway/input/seat.c index 86e5f809..231b545b 100644 --- a/sway/input/seat.c +++ b/sway/input/seat.c @@ -1076,7 +1076,8 @@ static void seat_end_move_tiling(struct sway_seat *seat) { list_t *siblings = container_get_siblings(con); if (siblings->length > 1) { int index = list_find(siblings, con); - struct sway_container *sibling = index == 0 ? siblings->items[1] : siblings->items[index - 1]; + struct sway_container *sibling = index == 0 ? + siblings->items[1] : siblings->items[index - 1]; con->width = sibling->width; con->height = sibling->height; } -- cgit v1.2.3-70-g09d2