diff options
author | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-09-11 23:24:57 +1000 |
---|---|---|
committer | Ryan Dwyer <ryandwyer1@gmail.com> | 2018-09-11 23:24:57 +1000 |
commit | 403905c11bf9996cf1937ec0067f33d013e78305 (patch) | |
tree | d3962238ee5f1cca9e06d7c6e6588246caaa3564 | |
parent | eb74317c2d8e2f58bde1f04bb900ed4948005752 (diff) | |
download | sway-403905c11bf9996cf1937ec0067f33d013e78305.tar.xz |
Fix line length
-rw-r--r-- | sway/input/seat.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; } |