diff options
author | Zandr Martin <[email protected]> | 2016-09-21 21:05:09 -0500 |
---|---|---|
committer | Zandr Martin <[email protected]> | 2016-09-21 21:05:09 -0500 |
commit | 7d947fdb952c07c5dce5a0ae6b602f02cb274736 (patch) | |
tree | 22a573a8ff47672d32a74da1941bee2089167f5e /sway/layout.c | |
parent | d98c26d0edbab66042ff3da0348d339fd857f99d (diff) |
add unique IDs to containers
Diffstat (limited to 'sway/layout.c')
-rw-r--r-- | sway/layout.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/layout.c b/sway/layout.c index 7802c412..6012af66 100644 --- a/sway/layout.c +++ b/sway/layout.c @@ -22,6 +22,7 @@ int min_sane_h = 60; int min_sane_w = 100; void init_layout(void) { + root_container.id = 0; // normally assigned in new_swayc() root_container.type = C_ROOT; root_container.layout = L_NONE; root_container.name = strdup("root"); |