summaryrefslogtreecommitdiff
path: root/src/compositor/compositor-xrender.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/compositor/compositor-xrender.c')
-rw-r--r--src/compositor/compositor-xrender.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compositor/compositor-xrender.c b/src/compositor/compositor-xrender.c
index e0938706..004dfd8b 100644
--- a/src/compositor/compositor-xrender.c
+++ b/src/compositor/compositor-xrender.c
@@ -811,10 +811,10 @@ root_tile (MetaScreen *screen)
{
XRenderColor c;
- /* Background default to just plain ugly grey */
- c.red = 0x8080;
- c.green = 0x8080;
- c.blue = 0x8080;
+ /* Background default to just plain black */
+ c.red = 0x0000;
+ c.green = 0x0000;
+ c.blue = 0x0000;
c.alpha = 0xffff;
XRenderFillRectangle (xdisplay, PictOpSrc, picture, &c, 0, 0, 1, 1);