all repos — tint2 @ a4894b8257ca6b8baecc3370f5d5288f8683daad

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

Workaround for empty systray icon in Google Chrome (misbehaving) - fix resize
o9000 o9000
commit

a4894b8257ca6b8baecc3370f5d5288f8683daad

parent

b7dbb919a9b1b5aa0e94a8657e5b9431eea196bb

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

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

@@ -148,7 +148,7 @@ if (systray_max_icon_size > 0 && sysbar->icon_size > systray_max_icon_size)

sysbar->icon_size = systray_max_icon_size; count = 0; for (l = systray.list_icons; l ; l = l->next) { - if (((TrayWindow*)l->data)->hide || ((TrayWindow*)l->data)->empty) + if (((TrayWindow*)l->data)->hide) continue; count++; }

@@ -558,7 +558,7 @@ // check empty systray

int count = 0; GSList *l; for (l = systray.list_icons; l; l = l->next) { - if (((TrayWindow*)l->data)->hide || ((TrayWindow*)l->data)->empty) + if (((TrayWindow*)l->data)->hide) continue; count++; }