summaryrefslogtreecommitdiffstats
path: root/sway/log.c
diff options
context:
space:
mode:
authorLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-20 21:37:59 -0500
committerLibravatar Luminarys <kizunanohikari@gmail.com>2015-08-20 21:37:59 -0500
commitf589731f2912660bab6fdffc14ddcdbac3edd41c (patch)
treecda490ea65181959c777e623cb0f20f055f1d90a /sway/log.c
parentStyle fixes (diff)
downloadsway-f589731f2912660bab6fdffc14ddcdbac3edd41c.tar.gz
sway-f589731f2912660bab6fdffc14ddcdbac3edd41c.tar.zst
sway-f589731f2912660bab6fdffc14ddcdbac3edd41c.zip
Rewrite of resize command to make it more sane
Diffstat (limited to 'sway/log.c')
-rw-r--r--sway/log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/log.c b/sway/log.c
index 6e01421b..eda0c88e 100644
--- a/sway/log.c
+++ b/sway/log.c
@@ -142,8 +142,8 @@ static void container_log(const swayc_t *c) {
142 c->layout == L_STACKED ? "Stacked|": 142 c->layout == L_STACKED ? "Stacked|":
143 c->layout == L_FLOATING ? "Floating|": 143 c->layout == L_FLOATING ? "Floating|":
144 "Unknown|"); 144 "Unknown|");
145 fprintf(stderr, "w:%d|h:%d|", c->width, c->height); 145 fprintf(stderr, "w:%f|h:%f|", c->width, c->height);
146 fprintf(stderr, "x:%d|y:%d|", c->x, c->y); 146 fprintf(stderr, "x:%f|y:%f|", c->x, c->y);
147 fprintf(stderr, "vis:%c|", c->visible?'t':'f'); 147 fprintf(stderr, "vis:%c|", c->visible?'t':'f');
148 fprintf(stderr, "name:%.16s|", c->name); 148 fprintf(stderr, "name:%.16s|", c->name);
149 fprintf(stderr, "children:%d\n",c->children?c->children->length:0); 149 fprintf(stderr, "children:%d\n",c->children?c->children->length:0);