just generating some extra configurenotifies
This commit is contained in:
parent
775d5da7ad
commit
b30478ed76
1 changed files with 5 additions and 2 deletions
|
@ -40,7 +40,7 @@ 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));
|
||||
|
@ -52,10 +52,13 @@ int main () {
|
|||
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);
|
||||
|
|
Loading…
Reference in a new issue