aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-04-26 10:14:18 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-04-26 10:14:18 +1000
commitae39d7b28caa30652c0e48fda453f509e8e8d784 (patch)
treea61a0fb433462d42b48a23fb58dd3b2a3bc778d8 /include
parentMerge pull request #1852 from RyanDwyer/criteria-commands (diff)
downloadsway-ae39d7b28caa30652c0e48fda453f509e8e8d784.tar.gz
sway-ae39d7b28caa30652c0e48fda453f509e8e8d784.tar.zst
sway-ae39d7b28caa30652c0e48fda453f509e8e8d784.zip
Remove sway_container.workspace_layout
Fixes #1716.
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h1
-rw-r--r--include/sway/tree/layout.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 6efda72f..5f3afdc1 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -68,7 +68,6 @@ struct sway_container {
68 enum sway_container_type type; 68 enum sway_container_type type;
69 enum sway_container_layout layout; 69 enum sway_container_layout layout;
70 enum sway_container_layout prev_layout; 70 enum sway_container_layout prev_layout;
71 enum sway_container_layout workspace_layout;
72 71
73 // For C_ROOT, this has no meaning 72 // For C_ROOT, this has no meaning
74 // For C_OUTPUT, this is the output position in layout coordinates 73 // For C_OUTPUT, this is the output position in layout coordinates
diff --git a/include/sway/tree/layout.h b/include/sway/tree/layout.h
index 49ae00e4..327134a5 100644
--- a/include/sway/tree/layout.h
+++ b/include/sway/tree/layout.h
@@ -49,9 +49,6 @@ struct sway_container *container_remove_child(struct sway_container *child);
49struct sway_container *container_replace_child(struct sway_container *child, 49struct sway_container *container_replace_child(struct sway_container *child,
50 struct sway_container *new_child); 50 struct sway_container *new_child);
51 51
52struct sway_container *container_set_layout(struct sway_container *container,
53 enum sway_container_layout layout);
54
55void container_move_to(struct sway_container* container, 52void container_move_to(struct sway_container* container,
56 struct sway_container* destination); 53 struct sway_container* destination);
57 54