aboutsummaryrefslogtreecommitdiff
path: root/sway/layout.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/layout.c')
-rw-r--r--sway/layout.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sway/layout.c b/sway/layout.c
index b558e704..c7c5c477 100644
--- a/sway/layout.c
+++ b/sway/layout.c
@@ -10,6 +10,7 @@
#include "focus.h"
swayc_t root_container;
+list_t *scratchpad;
int min_sane_h = 60;
int min_sane_w = 100;
@@ -20,6 +21,7 @@ void init_layout(void) {
root_container.children = create_list();
root_container.handle = -1;
root_container.visible = true;
+ scratchpad = create_list();
}
int index_child(const swayc_t *child) {