diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-04-12 04:17:01 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-04-12 04:17:01 +0000 |
| commit | 4d510a8a922c90a2076e2a222e499f033e627eb8 (patch) | |
| tree | d7ff8413c4ed6398b428208cb4dbe6e157431619 | |
| parent | 73f85d0a630840ab2aa06f1237ef5802b65b43ec (diff) | |
set the right mask for the client msg!
| -rw-r--r-- | tests/fullscreen.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/fullscreen.c b/tests/fullscreen.c index c5f686d9..ea5081a2 100644 --- a/tests/fullscreen.c +++ b/tests/fullscreen.c @@ -30,6 +30,7 @@ int main () { XFlush(display); sleep(2); + printf("fullscreen\n"); msg.xclient.type = ClientMessage; msg.xclient.message_type = _net_state; msg.xclient.display = display; @@ -41,10 +42,11 @@ int main () { msg.xclient.data.l[3] = 0l; msg.xclient.data.l[4] = 0l; XSendEvent(display, RootWindow(display, 0), False, - StructureNotifyMask | SubstructureNotifyMask, &msg); + SubstructureNotifyMask | SubstructureRedirectMask, &msg); XFlush(display); sleep(2); + printf("restore\n"); msg.xclient.type = ClientMessage; msg.xclient.message_type = _net_state; msg.xclient.display = display; @@ -56,7 +58,7 @@ int main () { msg.xclient.data.l[3] = 0l; msg.xclient.data.l[4] = 0l; XSendEvent(display, RootWindow(display, 0), False, - StructureNotifyMask | SubstructureNotifyMask, &msg); + SubstructureNotifyMask | SubstructureRedirectMask, &msg); XSelectInput(display, win, ExposureMask | StructureNotifyMask); |
