Remove offset argument to container_add_sibling

I added this thinking that it might come in useful. Turns out it didn't.
This commit is contained in:
Ryan Dwyer 2018-08-30 22:23:27 +10:00
parent 0df04e27b6
commit 06d9693829
4 changed files with 6 additions and 6 deletions

View file

@ -233,7 +233,7 @@ static void container_move_to_container(struct sway_container *container,
container->saved_width = container->saved_height = 0;
if (destination->view) {
container_add_sibling(destination, container, 1);
container_add_sibling(destination, container);
} else {
container_add_child(destination, container);
}