diff options
author | Drew DeVault <[email protected]> | 2016-04-25 11:34:27 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2016-04-25 11:34:27 -0400 |
commit | dba1195b4452dd7497d780b5d8c0b43f361f5aab (patch) | |
tree | 0b329d72536a75e5d960b25b4414b9d1fe4a5018 /sway/debug_log.c | |
parent | 7efa9ab34ae1dabcc7c87d22bfba0b1312c8c662 (diff) | |
parent | 05b4965a99417b74df13e9138b14347e7dc47685 (diff) |
Merge pull request #566 from mikkeloscar/tabbed-stacking-layout
Tabbed and stacked layout
Diffstat (limited to 'sway/debug_log.c')
-rw-r--r-- | sway/debug_log.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/debug_log.c b/sway/debug_log.c index 761dca6c..f804a541 100644 --- a/sway/debug_log.c +++ b/sway/debug_log.c @@ -38,6 +38,7 @@ static void container_log(const swayc_t *c, int depth) { c->layout == L_HORIZ ? "Horiz": c->layout == L_VERT ? "Vert": c->layout == L_STACKED ? "Stack": + c->layout == L_TABBED ? "Tab": c->layout == L_FLOATING ? "Float": "Unknown"); fprintf(stderr, "w:%4.f|h:%4.f|", c->width, c->height); |