diff options
author | taiyu <[email protected]> | 2015-09-05 20:48:52 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-09-05 20:48:52 -0700 |
commit | f25c6b312b2f4176a1936436e23140c791919ceb (patch) | |
tree | 63537a7cb41b5e4c97cc25a243fdaf9b939fdefd /sway/log.c | |
parent | 7169ebc24cb61ba7443d6c69e52b378907a3d4b7 (diff) |
gap resize
Diffstat (limited to 'sway/log.c')
-rw-r--r-- | sway/log.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -159,8 +159,9 @@ static void container_log(const swayc_t *c) { c->layout == L_STACKED ? "Stacked|": c->layout == L_FLOATING ? "Floating|": "Unknown|"); - fprintf(stderr, "w:%f|h:%f|", c->width, c->height); - fprintf(stderr, "x:%f|y:%f|", c->x, c->y); + fprintf(stderr, "w:%.f|h:%.f|", c->width, c->height); + fprintf(stderr, "x:%.f|y:%.f|", c->x, c->y); + fprintf(stderr, "g:%d|",c->gaps); fprintf(stderr, "vis:%c|", c->visible?'t':'f'); fprintf(stderr, "name:%.16s|", c->name); fprintf(stderr, "children:%d\n",c->children?c->children->length:0); |