diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2019-08-11 00:21:44 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2019-08-27 08:12:23 +0200 |
commit | a539aaa6aaa7a29023ef4c3d116fc2e1a11c82c1 (patch) | |
tree | d2ba647c6e7f1650ab7215b176ee43439bf33099 /nx-X11/programs/Xserver/hw/nxagent/Init.c | |
parent | c610d706b44a48fbae633ead3e241ce57c31ccc6 (diff) | |
download | nx-libs-a539aaa6aaa7a29023ef4c3d116fc2e1a11c82c1.tar.gz nx-libs-a539aaa6aaa7a29023ef4c3d116fc2e1a11c82c1.tar.bz2 nx-libs-a539aaa6aaa7a29023ef4c3d116fc2e1a11c82c1.zip |
dix: add whiteroot flag
Before there was no way of getting a white background despite having
the approriate code.
Backport of this commit:
commit cb0a565d2b2cf8823abbd77b4426cc2237731dc1
Author: Daniel Stone <daniel@fooishbar.org>
Date: Fri Aug 18 17:04:48 2006 +0300
dix: add whiteroot flag
Add a -wr option to use a white root window, and use a BackPixel rather
than BackPixmap for both white and black root windows.
Fixes ArcticaProject/nx-libs#832
Diffstat (limited to 'nx-X11/programs/Xserver/hw/nxagent/Init.c')
-rw-r--r-- | nx-X11/programs/Xserver/hw/nxagent/Init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nx-X11/programs/Xserver/hw/nxagent/Init.c b/nx-X11/programs/Xserver/hw/nxagent/Init.c index 1e24a618e..2a0bceaf5 100644 --- a/nx-X11/programs/Xserver/hw/nxagent/Init.c +++ b/nx-X11/programs/Xserver/hw/nxagent/Init.c @@ -413,7 +413,8 @@ FIXME: These variables, if not removed at all because have probably * background. */ - blackRoot = TRUE; + if (!whiteRoot) + blackRoot = TRUE; nxagentInitKeystrokes(False); |