all repos — tint2 @ 690fe3f4d81cbeb419ea6c1ccbd6da64cb511fa2

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

Systray: remove debugging messages
o9000 o9000
commit

690fe3f4d81cbeb419ea6c1ccbd6da64cb511fa2

parent

c1d0a42bed8cfcf97c18bb705cd192f58fe5925c

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

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

@@ -167,7 +167,8 @@ if (((TrayWindow*)l->data)->hide)

continue; count++; } - fprintf(stderr, BLUE "%s:%d number of icons = %d\n" RESET, __FUNCTION__, __LINE__, count); + if (systray_profile) + fprintf(stderr, BLUE "%s:%d number of icons = %d\n" RESET, __FUNCTION__, __LINE__, count); if (panel_horizontal) { int height = sysbar->area.height - 2*sysbar->area.bg->border.width - 2*sysbar->area.paddingy;

@@ -507,7 +508,8 @@ DATA32 rgb = pixel & 0xffFFff;

DATA32 pixel_bg = data_bg[y * other->width + x]; DATA32 rgb_bg = pixel_bg & 0xffFFff; if (rgb != rgb_bg) { - fprintf(stderr, "Pixel: %x different from bg %x at pos %d %d\n", pixel, pixel_bg, x, y); + if (systray_profile) + fprintf(stderr, "Pixel: %x different from bg %x at pos %d %d\n", pixel, pixel_bg, x, y); empty = 0; } }

@@ -620,7 +622,6 @@ }

gboolean reparent_icon(TrayWindow *traywin) { - fprintf(stderr, "reparenting tray icon\n"); if (systray_profile) fprintf(stderr, "[%f] %s:%d win = %lu (%s)\n", profiling_get_time(), __FUNCTION__, __LINE__, traywin->win, traywin->name); if (traywin->reparented)

@@ -631,7 +632,7 @@ XSync(server.dsp, False);

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

@@ -655,7 +656,7 @@ e.xclient.data.l[2] = 0;

e.xclient.data.l[3] = traywin->parent; e.xclient.data.l[4] = 0; if (systray_profile) - fprintf(stderr, "XSendEvent(server.dsp, traywin->win, False, 0xFFFFFF, &e)\n"); + fprintf(stderr, "XSendEvent(server.dsp, traywin->win, False, NoEventMask, &e)\n"); XSendEvent(server.dsp, traywin->win, False, NoEventMask, &e); }

@@ -677,7 +678,6 @@ }

gboolean embed_icon(TrayWindow *traywin) { - fprintf(stderr, "embedding tray icon\n"); if (systray_profile) fprintf(stderr, "[%f] %s:%d win = %lu (%s)\n", profiling_get_time(), __FUNCTION__, __LINE__, traywin->win, traywin->name); if (traywin->embedded)

@@ -867,11 +867,9 @@ }

void systray_reconfigure_event(TrayWindow *traywin, XEvent *e) { - if (1 || systray_profile) + if (systray_profile) fprintf(stderr, "XConfigure event: win = %lu (%s), x = %d, y = %d, w = %d, h = %d\n", traywin->win, traywin->name, e->xconfigure.x, e->xconfigure.y, e->xconfigure.width, e->xconfigure.height); - - //fprintf(stderr, "move tray %d\n", traywin->x); if (!traywin->reparented) return;

@@ -922,11 +920,9 @@ }

void systray_resize_request_event(TrayWindow *traywin, XEvent *e) { - if (1 || systray_profile) + if (systray_profile) fprintf(stderr, "XResizeRequest event: win = %lu (%s), w = %d, h = %d\n", traywin->win, traywin->name, e->xresizerequest.width, e->xresizerequest.height); - - //fprintf(stderr, "move tray %d\n", traywin->x); if (!traywin->reparented) return;

@@ -1208,7 +1204,8 @@ }

XSetErrorHandler(old); } - fprintf(stderr, "rendering tray icon\n"); + if (systray_profile) + fprintf(stderr, "rendering tray icon\n"); if (systray_composited) { systray_render_icon_composited(traywin);