mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Merge bf30257c1e
into ab455bbada
This commit is contained in:
commit
95583b37e8
3 changed files with 5 additions and 2 deletions
|
@ -121,6 +121,9 @@ void workspace_detach(struct sway_workspace *workspace);
|
|||
struct sway_container *workspace_add_tiling(struct sway_workspace *workspace,
|
||||
struct sway_container *con);
|
||||
|
||||
void workspace_attach_tiling(struct sway_workspace *ws,
|
||||
struct sway_container *con);
|
||||
|
||||
void workspace_add_floating(struct sway_workspace *workspace,
|
||||
struct sway_container *con);
|
||||
|
||||
|
|
|
@ -221,7 +221,7 @@ static void container_move_to_workspace(struct sway_container *container,
|
|||
} else {
|
||||
container_detach(container);
|
||||
if (workspace_is_empty(workspace) && container->pending.children) {
|
||||
workspace_unwrap_children(workspace, container);
|
||||
workspace_attach_tiling(workspace, container);
|
||||
} else {
|
||||
container->pending.width = container->pending.height = 0;
|
||||
container->width_fraction = container->height_fraction = 0;
|
||||
|
|
|
@ -740,7 +740,7 @@ static void set_workspace(struct sway_container *container, void *data) {
|
|||
container->pending.workspace = container->pending.parent->pending.workspace;
|
||||
}
|
||||
|
||||
static void workspace_attach_tiling(struct sway_workspace *ws,
|
||||
void workspace_attach_tiling(struct sway_workspace *ws,
|
||||
struct sway_container *con) {
|
||||
list_add(ws->tiling, con);
|
||||
con->pending.workspace = ws;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue