summaryrefslogtreecommitdiffstats
path: root/include/container.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/container.h')
-rw-r--r--include/container.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/container.h b/include/container.h
index dd934be6..7560ddb8 100644
--- a/include/container.h
+++ b/include/container.h
@@ -40,12 +40,17 @@ struct sway_container {
40 40
41 bool visible; 41 bool visible;
42 42
43 bool is_floating;
44
43 int weight; 45 int weight;
44 46
45 char *name; 47 char *name;
46 48
47 list_t *children; 49 list_t *children;
48 50
51 // Special list for floating windows in workspaces
52 list_t *floating;
53
49 struct sway_container *parent; 54 struct sway_container *parent;
50 struct sway_container *focused; 55 struct sway_container *focused;
51}; 56};