Revert "Fixes dealing with workspace_layout and related bugs [rfc]"

This commit is contained in:
Drew DeVault 2016-10-12 21:26:06 -04:00 committed by GitHub
parent 857eea8b63
commit 4cba91803e
7 changed files with 26 additions and 44 deletions

View file

@ -68,7 +68,6 @@ struct sway_container {
enum swayc_types type;
enum swayc_layouts layout;
enum swayc_layouts prev_layout;
enum swayc_layouts workspace_layout;
/**
* Width and height of this container, without borders or gaps.
@ -322,10 +321,4 @@ void update_visibility(swayc_t *container);
*/
void close_views(swayc_t *container);
/**
* Assign layout to a container. Needed due to workspace container specifics.
* Workspace always needs L_HORIZ layout.
*/
swayc_t *swayc_change_layout(swayc_t *container, enum swayc_layouts layout);
#endif