all repos — tint2 @ c7aa70f078c938b26de61e8665fe918aff50944c

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

Systray: remove SubstructureNotifyMask from XSelectInput
o9000 o9000
commit

c7aa70f078c938b26de61e8665fe918aff50944c

parent

690fe3f4d81cbeb419ea6c1ccbd6da64cb511fa2

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

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

@@ -633,7 +633,7 @@ error = FALSE;

XErrorHandler old = XSetErrorHandler(window_error_handler); if (systray_profile) fprintf(stderr, "XSelectInput(server.dsp, traywin->win, ...)\n"); - XSelectInput(server.dsp, traywin->win, SubstructureNotifyMask | StructureNotifyMask | PropertyChangeMask | ResizeRedirectMask); + XSelectInput(server.dsp, traywin->win, StructureNotifyMask | PropertyChangeMask | ResizeRedirectMask); XWithdrawWindow(server.dsp, traywin->win, server.screen); XReparentWindow(server.dsp, traywin->win, traywin->parent, 0, 0);