sway

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

commit 403905c11bf9996cf1937ec0067f33d013e78305
parent eb74317c2d8e2f58bde1f04bb900ed4948005752
Author: Ryan Dwyer <ryandwyer1@gmail.com>
Date:   Tue, 11 Sep 2018 23:24:57 +1000

Fix line length

Diffstat:
Msway/input/seat.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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; }