all repos — tint2 @ b9544f0fa0014a58a5dd01935ad517382f673623

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

reverted Rev 407 because here it s breaking alls icon with systray + xcompmgr

git-svn-id: http://tint2.googlecode.com/svn/trunk@437 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
thilor77 thilor77@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

b9544f0fa0014a58a5dd01935ad517382f673623

parent

20f181fdef00b1aeb3a1e52275fd31da0fa0338a

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M src/systray/systraybar.csrc/systray/systraybar.c

@@ -557,10 +557,10 @@ printf("Strange tray icon found with depth: %d\n", traywin->depth);

return; } Picture pict_image; - if (server.real_transparency) - pict_image = XRenderCreatePicture(server.dsp, traywin->id, f, 0, 0); - else - pict_image = XRenderCreatePicture(server.dsp, traywin->tray_id, f, 0, 0); + //if (server.real_transparency) + //pict_image = XRenderCreatePicture(server.dsp, traywin->id, f, 0, 0); + // reverted Rev 407 because here it's breaking alls icon with systray + xcompmgr + pict_image = XRenderCreatePicture(server.dsp, traywin->tray_id, f, 0, 0); Picture pict_drawable = XRenderCreatePicture(server.dsp, tmp_pmap, XRenderFindVisualFormat(server.dsp, server.visual32), 0, 0); XRenderComposite(server.dsp, PictOpSrc, pict_image, None, pict_drawable, 0, 0, 0, 0, 0, 0, traywin->width, traywin->height); XRenderFreePicture(server.dsp, pict_image);