aboutsummaryrefslogtreecommitdiff
path: root/sway/debug_log.c
diff options
context:
space:
mode:
authorwil <william.barsse@gmail.com>2016-12-10 16:44:43 +0100
committerwil <william.barsse@gmail.com>2016-12-29 20:31:30 +0100
commit97f7d47413967e2b6f405c4fa303850b7c56f57a (patch)
tree5237aea545fd2665b5e4a3967df5d6688d81858d /sway/debug_log.c
parent6a1df17fb7f7bcfa26d825173de4d31b771fd7a6 (diff)
Added Awesome/Monad type "auto" layouts
Diffstat (limited to 'sway/debug_log.c')
-rw-r--r--sway/debug_log.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sway/debug_log.c b/sway/debug_log.c
index 8d891a44..d1eafae8 100644
--- a/sway/debug_log.c
+++ b/sway/debug_log.c
@@ -38,6 +38,10 @@ static void container_log(const swayc_t *c, int depth) {
c->layout == L_STACKED ? "Stack":
c->layout == L_TABBED ? "Tab":
c->layout == L_FLOATING ? "Float":
+ c->layout == L_AUTO_LEFT ? "A_lft":
+ c->layout == L_AUTO_RIGHT ? "A_rgt":
+ c->layout == L_AUTO_TOP ? "A_top":
+ c->layout == L_AUTO_BOTTOM ? "A_bot":
"Unknown");
fprintf(stderr, "w:%4.f|h:%4.f|", c->width, c->height);
fprintf(stderr, "x:%4.f|y:%4.f|", c->x, c->y);