diff options
author | rsc <devnull@localhost> | 2004-04-05 21:02:10 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-04-05 21:02:10 +0000 |
commit | cc3c704cf3ab96a8f1e77bb77d85a7758e92d868 (patch) | |
tree | e46d91819c408eb686ec1a49397be3d1b982891b /src | |
parent | 0073d672b75aab67866d5446ba3174f0a31f6235 (diff) | |
download | plan9port-cc3c704cf3ab96a8f1e77bb77d85a7758e92d868.tar.gz plan9port-cc3c704cf3ab96a8f1e77bb77d85a7758e92d868.tar.bz2 plan9port-cc3c704cf3ab96a8f1e77bb77d85a7758e92d868.zip |
debugging print
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd/rio/manage.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/rio/manage.c b/src/cmd/rio/manage.c index 1478fda0..8ab5b5b9 100644 --- a/src/cmd/rio/manage.c +++ b/src/cmd/rio/manage.c @@ -101,6 +101,8 @@ manage(Client *c, int mapped) /* Now do it!!! */ if (doreshape) { + if(0) fprintf(stderr, "in doreshape is9term=%d fixsize=%d, x=%d, y=%d, min_dx=%d, min_dy=%d, dx=%d, dy=%d\n", + c->is9term, fixsize, c->x, c->y, c->min_dx, c->min_dy, c->dx, c->dy); if (current && current->screen == c->screen) cmapnofocus(c->screen); if (!c->is9term && c->x==0 && c->y==0) { @@ -119,7 +121,6 @@ manage(Client *c, int mapped) cmapfocus(current); return 0; } - } else gravitate(c, 0); |