From fc44f4a049078b355faa8ab627a3f9759e5f4cab Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sun, 17 Oct 2010 09:26:09 +0200 Subject: [PATCH] Systray: Remove a now-useless default background Signed-off-by: Uli Schlachter --- systray.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/systray.c b/systray.c index f3244a96..fc7a87b5 100644 --- a/systray.c +++ b/systray.c @@ -40,7 +40,6 @@ void systray_init(void) { xcb_screen_t *xscreen = globalconf.screen; - uint32_t values[] = { xscreen->white_pixel }; globalconf.systray.window = xcb_generate_id(globalconf.connection); xcb_create_window(globalconf.connection, xscreen->root_depth, @@ -48,7 +47,7 @@ systray_init(void) xscreen->root, -1, -1, 1, 1, 0, XCB_COPY_FROM_PARENT, xscreen->root_visual, - XCB_CW_BACK_PIXEL, values); + 0, NULL); } /** Register systray in X.