Fix systray rendering when compositor off

This commit is contained in:
o9000
2015-07-23 20:38:33 +02:00
parent f68eabcf35
commit e76202b355
3 changed files with 9 additions and 14 deletions

View File

@@ -359,13 +359,7 @@ void draw_launcher_icon(void *obj, cairo_t *c)
// Render
imlib_context_set_image(launcherIcon->image);
if (server.real_transparency) {
render_image(launcherIcon->area.pix, 0, 0);
} else {
imlib_context_set_blend(1);
imlib_context_set_drawable(launcherIcon->area.pix);
imlib_render_image_on_drawable(0, 0);
}
render_image(launcherIcon->area.pix, 0, 0);
}
Imlib_Image scale_icon(Imlib_Image original, int icon_size)