summaryrefslogtreecommitdiff
path: root/sway/tree/workspace.c
diff options
context:
space:
mode:
authorRyan Dwyer <[email protected]>2018-05-25 09:10:35 +1000
committerRyan Dwyer <[email protected]>2018-06-01 23:14:58 +1000
commit34f35f0badc767d9b0cbaf2fd429af1d30592d08 (patch)
tree1cc3a747d8e07cb55fa2cc95d26e2b33c792d89f /sway/tree/workspace.c
parent1f2e399ade77070a2d0b82856ad9a3eef96b8676 (diff)
Use L_FLOATING instead of reapable boolean
Diffstat (limited to 'sway/tree/workspace.c')
-rw-r--r--sway/tree/workspace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/workspace.c b/sway/tree/workspace.c
index 5bef409a..37d4a06a 100644
--- a/sway/tree/workspace.c
+++ b/sway/tree/workspace.c
@@ -67,7 +67,7 @@ struct sway_container *workspace_create(struct sway_container *output,
swayws->swayc = workspace;
swayws->floating = container_create(C_CONTAINER);
swayws->floating->parent = swayws->swayc;
- swayws->floating->reapable = false;
+ swayws->floating->layout = L_FLOATING;
workspace->sway_workspace = swayws;
container_add_child(output, workspace);