mirror of
https://github.com/swaywm/sway.git
synced 2025-11-09 13:29:49 -05:00
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:
parent
0df04e27b6
commit
06d9693829
4 changed files with 6 additions and 6 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue