summaryrefslogtreecommitdiff
path: root/sway/layout.c
diff options
context:
space:
mode:
authorLuminarys <[email protected]>2015-08-28 23:39:12 -0500
committerLuminarys <[email protected]>2015-08-28 23:39:12 -0500
commit7eefecf4790bd0daf5c5727766c904c8c55dc6ee (patch)
tree2b65e4162d599e2bc2c0a706678f19b4b1c2fd14 /sway/layout.c
parent70c238ef663c9e3b11046e6d7b20fa7385e4c708 (diff)
Added in scratchpad adding
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) {