summaryrefslogtreecommitdiffstats
path: root/sway/debug_log.c
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-04-01 21:39:15 +0200
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-04-25 00:00:49 +0200
commita0cebb7c5a0530414e85c85fb0231881f988df7c (patch)
treed2f58758747730cb79d5cc053b6b15300ea51fe8 /sway/debug_log.c
parentCorrectly determine default layout (diff)
downloadsway-a0cebb7c5a0530414e85c85fb0231881f988df7c.tar.gz
sway-a0cebb7c5a0530414e85c85fb0231881f988df7c.tar.zst
sway-a0cebb7c5a0530414e85c85fb0231881f988df7c.zip
Improve move command with tabbed/stacked layout
Diffstat (limited to 'sway/debug_log.c')
-rw-r--r--sway/debug_log.c1
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) {
38 c->layout == L_HORIZ ? "Horiz": 38 c->layout == L_HORIZ ? "Horiz":
39 c->layout == L_VERT ? "Vert": 39 c->layout == L_VERT ? "Vert":
40 c->layout == L_STACKED ? "Stack": 40 c->layout == L_STACKED ? "Stack":
41 c->layout == L_TABBED ? "Tab":
41 c->layout == L_FLOATING ? "Float": 42 c->layout == L_FLOATING ? "Float":
42 "Unknown"); 43 "Unknown");
43 fprintf(stderr, "w:%4.f|h:%4.f|", c->width, c->height); 44 fprintf(stderr, "w:%4.f|h:%4.f|", c->width, c->height);