mirror of
https://github.com/X11Libre/xserver.git
synced 2026-09-25 21:02:21 +00:00
Build with modular X.org libraries and headers.
composite/compwindow.c Don't damage unmoved windows. Let border clip reset
leave damage alone, pending actual damage for painting.
This commit is contained in:
parent
129e812c33
commit
a11ce76b06
13 changed files with 25 additions and 8 deletions
|
|
@ -521,9 +521,15 @@ hostx_screen_init (int width, int height)
|
|||
|
||||
/* Ask the WM to keep our size static */
|
||||
size_hints = XAllocSizeHints();
|
||||
#if 0
|
||||
size_hints->max_width = size_hints->min_width = width;
|
||||
size_hints->max_height = size_hints->min_height = height;
|
||||
size_hints->flags = PMinSize|PMaxSize;
|
||||
#else
|
||||
size_hints->min_width = 100;
|
||||
size_hints->min_height = 100;
|
||||
size_hints->flags = PMinSize;
|
||||
#endif
|
||||
XSetWMNormalHints(HostX.dpy, HostX.win, size_hints);
|
||||
XFree(size_hints);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue