Remove sway_container.workspace_layout

Fixes #1716.
This commit is contained in:
Ryan Dwyer 2018-04-26 10:14:18 +10:00
parent 7ac770f3c0
commit ae39d7b28c
7 changed files with 13 additions and 33 deletions

View file

@ -68,7 +68,6 @@ struct sway_container {
enum sway_container_type type;
enum sway_container_layout layout;
enum sway_container_layout prev_layout;
enum sway_container_layout workspace_layout;
// For C_ROOT, this has no meaning
// For C_OUTPUT, this is the output position in layout coordinates

View file

@ -49,9 +49,6 @@ struct sway_container *container_remove_child(struct sway_container *child);
struct sway_container *container_replace_child(struct sway_container *child,
struct sway_container *new_child);
struct sway_container *container_set_layout(struct sway_container *container,
enum sway_container_layout layout);
void container_move_to(struct sway_container* container,
struct sway_container* destination);