aboutsummaryrefslogtreecommitdiff
path: root/include/sway/tree/container.h
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-04-19 23:31:25 +0100
committerGitHub <noreply@github.com>2018-04-19 23:31:25 +0100
commita5719f9f432b5f9378ebd2136f8a2cde46dfb407 (patch)
tree1735e7c33fe5547acfaa56b893fc0b450c0d9483 /include/sway/tree/container.h
parent2f0120e458cae47f38a3c09af174bae60964151c (diff)
parent6afccd07d95582a72e36b49454266ab0cebec7c0 (diff)
Merge pull request #1817 from RyanDwyer/fullscreen
Implement fullscreen
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r--include/sway/tree/container.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 2a8b8aba..6efda72f 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -45,6 +45,7 @@ enum sway_container_border {
struct sway_root;
struct sway_output;
+struct sway_workspace;
struct sway_view;
struct sway_container {
@@ -52,6 +53,7 @@ struct sway_container {
// TODO: Encapsulate state for other node types as well like C_CONTAINER
struct sway_root *sway_root;
struct sway_output *sway_output;
+ struct sway_workspace *sway_workspace;
struct sway_view *sway_view;
};