X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=tests%2Fnoresize.c;h=c98295bddbe28b10aab52ed5733a82ed3a9216a9;hb=677fb4264412007f6d830e5899c9b1fa41b4c95b;hp=1ba4fd5279f3f8e9e986e6c996bffb8946a688c4;hpb=c4e4760c41f10aae6af19a4363cb247c71edee4b;p=chaz%2Fopenbox diff --git a/tests/noresize.c b/tests/noresize.c index 1ba4fd52..c98295bd 100644 --- a/tests/noresize.c +++ b/tests/noresize.c @@ -1,7 +1,7 @@ -/* -*- indent-tabs-mode: t; tab-width: 4; c-basic-offset: 4; -*- +/* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*- noresize.c for the Openbox window manager - Copyright (c) 2003 Ben Jansens + Copyright (c) 2003-2007 Dana Jansens This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -40,10 +40,10 @@ int main () { xswamask = CWWinGravity; win = XCreateWindow(display, RootWindow(display, 0), - x, y, w, h, 10, CopyFromParent, CopyFromParent, + x, y, w, h, 0, CopyFromParent, CopyFromParent, CopyFromParent, xswamask, &xswa); - XSetWindowBackground(display,win,WhitePixel(display,0)); + XSetWindowBackground(display,win,WhitePixel(display,0)); size.flags = PMinSize | PMaxSize; size.max_width = 0; @@ -51,11 +51,14 @@ int main () { size.max_height = 0; size.min_height = h; XSetWMNormalHints(display, win, &size); - + + XSelectInput(display, win, ExposureMask | StructureNotifyMask); + XMapWindow(display, win); XFlush(display); - XSelectInput(display, win, ExposureMask | StructureNotifyMask); + XMoveWindow(display, win, 10, 10); + XMoveWindow(display, win, 10, 10); while (1) { XNextEvent(display, &report);