mirror of
https://github.com/swaywm/sway.git
synced 2025-11-15 06:59:50 -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
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue