From 387ad11bfb177d26a299c8ed8f2093e2195179e2 Mon Sep 17 00:00:00 2001 From: Thierry Lorthiois Date: Sun, 31 Jan 2010 10:17:20 +0000 Subject: [PATCH] improve systray drawing when screen depth = 24 --- src/systray/systraybar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/systray/systraybar.c b/src/systray/systraybar.c index edf0706..3cdc252 100644 --- a/src/systray/systraybar.c +++ b/src/systray/systraybar.c @@ -521,7 +521,7 @@ void systray_render_icon_now(void* t) imlib_context_set_image(image); imlib_image_set_has_alpha(1); DATA32* data = imlib_image_get_data(); - if (traywin->depth == 24) { + if (traywin->depth == 24 && server.depth != 24) { createHeuristicMask(data, traywin->width, traywin->height); } if (systray.alpha != 100 || systray.brightness != 0 || systray.saturation != 0) -- 2.44.0