aboutsummaryrefslogtreecommitdiff
path: root/sway/log.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2015-08-20 08:07:16 -0400
committerDrew DeVault <sir@cmpwn.com>2015-08-20 08:07:16 -0400
commit95f5660897b6640f13623178651f45549a917efb (patch)
tree0811a259f740cfc7185974c87fbdaa40e9a956e6 /sway/log.c
parent85ae987515a9227bde15c736a941d5ee59e49dc3 (diff)
parentf6e002fb8b664d80ef10126f6a204ffbb2f192df (diff)
Merge pull request #97 from taiyu-len/master
setup for resizable windows, drop weight
Diffstat (limited to 'sway/log.c')
-rw-r--r--sway/log.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/sway/log.c b/sway/log.c
index 44f6e366..49a74e02 100644
--- a/sway/log.c
+++ b/sway/log.c
@@ -114,7 +114,6 @@ static void container_log(const swayc_t *c) {
fprintf(stderr, "w:%d|h:%d|", c->width, c->height);
fprintf(stderr, "x:%d|y:%d|", c->x, c->y);
fprintf(stderr, "vis:%c|", c->visible?'t':'f');
- fprintf(stderr, "wgt:%d|", c->weight);
fprintf(stderr, "name:%.16s|", c->name);
fprintf(stderr, "children:%d\n",c->children?c->children->length:0);
}