*fix* issue 217
git-svn-id: http://tint2.googlecode.com/svn/trunk@391 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
@@ -522,9 +522,13 @@ void systray_render_icon_now(void* t)
|
||||
Pixmap tmp_pmap = XCreatePixmap(server.dsp, server.root_win, traywin->width, traywin->height, server.depth);
|
||||
XRenderPictFormat* f;
|
||||
if (traywin->depth == 24)
|
||||
f = XRenderFindVisualFormat(server.dsp, DefaultVisual(server.dsp, 0));
|
||||
else
|
||||
f = XRenderFindStandardFormat(server.dsp, PictStandardRGB24);
|
||||
else if (traywin->depth == 32)
|
||||
f = XRenderFindStandardFormat(server.dsp, PictStandardARGB32);
|
||||
else {
|
||||
printf("Strange tray icon found...\n");
|
||||
return;
|
||||
}
|
||||
Picture pict_image = XRenderCreatePicture(server.dsp, traywin->tray_id, f, 0, 0);
|
||||
Picture pict_drawable = XRenderCreatePicture(server.dsp, tmp_pmap, XRenderFindVisualFormat(server.dsp, server.visual), 0, 0);
|
||||
XRenderComposite(server.dsp, PictOpSrc, pict_image, None, pict_drawable, 0, 0, 0, 0, 0, 0, traywin->width, traywin->height);
|
||||
|
||||
Reference in New Issue
Block a user