all repos — tint2 @ d9454cc8cf1f58b53fab6cac0954ee51e2920795

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

*fix* issue 221


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

d9454cc8cf1f58b53fab6cac0954ee51e2920795

parent

a58a4d18300915ba3fcea73d02afbe6bef76695b

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

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

@@ -353,7 +353,7 @@ XGetWindowAttributes(server.dsp, id, &attr);

unsigned long mask = 0; XSetWindowAttributes set_attr; // printf("icon with depth: %d\n", attr.depth); - if (attr.depth != server.depth || systray.alpha != 100 || systray.brightness != 0 || systray.saturation != 0 ) { + if (attr.depth != server.depth ) { set_attr.colormap = attr.colormap; set_attr.background_pixel = 0; set_attr.border_pixel = 0;

@@ -546,7 +546,7 @@

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)