all repos — tint2 @ 19b40bc59e7bda467d6bb07ebf2bdf6cdef9cc31

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

systray: Check icon position
o9000 o9000
commit

19b40bc59e7bda467d6bb07ebf2bdf6cdef9cc31

parent

8c9a9a111ed4a377a336fd799cd7f7e3182a09e6

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

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

@@ -730,7 +730,7 @@ if (!XGetGeometry(server.dsp, traywin->win, &root, &xpos, &ypos, &width, &height, &border_width, &depth)) {

fprintf(stderr, "Couldn't get geometry of window!\n"); return; } - if (width != traywin->width || height != traywin->height) { + if (width != traywin->width || height != traywin->height || xpos != 0 || ypos != 0) { XMoveResizeWindow(server.dsp, traywin->win, 0, 0, traywin->width, traywin->height); traywin->render_timeout = add_timeout(50, 0, systray_render_icon_composited, traywin, &traywin->render_timeout); return;