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

@ -515,7 +515,7 @@ void view_map(struct sway_view *view, struct wlr_surface *wlr_surface) {
view->container = container_create(view);
if (target_sibling) {
container_add_sibling(target_sibling, view->container, 1);
container_add_sibling(target_sibling, view->container);
} else {
workspace_add_tiling(ws, view->container);
}