diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-27 15:28:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-27 15:28:16 +0000 |
| commit | 8e19e99ac8e5a4e7e9721b10447c4b90f17c2c8f (patch) | |
| tree | f1e8c658cde39ee4ff7e18e698ab524903cb2600 /tests/confignotify.c | |
| parent | 2521fd24c59d1f526cb355952801c3afcf7b9e1f (diff) | |
debug print modified and the confignotify test
Diffstat (limited to 'tests/confignotify.c')
| -rw-r--r-- | tests/confignotify.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/confignotify.c b/tests/confignotify.c index 4d4a7cc5..d18d27e5 100644 --- a/tests/confignotify.c +++ b/tests/confignotify.c @@ -35,7 +35,7 @@ int main () { } win = XCreateWindow(display, RootWindow(display, 0), - x, y, w, h, 10, CopyFromParent, CopyFromParent, + x, y, w, h, 0, CopyFromParent, CopyFromParent, CopyFromParent, 0, NULL); XSetWindowBackground(display,win,WhitePixel(display,0)); @@ -46,6 +46,10 @@ int main () { XMapWindow(display, win); XFlush(display); + sleep(1); + XResizeWindow(display, win, w+5, h+5); + XMoveWindow(display, win, x, y); + while (1) { XNextEvent(display, &report); |
