all repos — tint2 @ 8efe25f8511bb99c23beaf60c28fd37e0e9c775b

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

*fix* set window background on trayicon parents


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

8efe25f8511bb99c23beaf60c28fd37e0e9c775b

parent

6051ae447fdaf1874e610ecce125afca589c5efb

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

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

@@ -553,6 +553,7 @@

void refresh_systray_icon() { + Panel* panel = systray.area.panel; TrayWindow *traywin; GSList *l; for (l = systray.list_icons; l ; l = l->next) {

@@ -560,7 +561,11 @@ traywin = (TrayWindow*)l->data;

if (traywin->hide) continue; if (real_transparency || systray.alpha != 100 || systray.brightness != 0 || systray.saturation != 0) systray_render_icon(traywin); - else + else { + Pixmap pix = XCreatePixmap(server.dsp, server.root_win, traywin->width, traywin->height, server.depth); + XCopyArea(server.dsp, panel->temp_pmap, pix, server.gc, traywin->x, traywin->y, traywin->width, traywin->height, 0, 0); XClearArea(server.dsp, traywin->tray_id, 0, 0, traywin->width, traywin->height, True); + XSetWindowBackgroundPixmap(server.dsp, traywin->id, pix); + } } }