Update src/systray/systraybar.c

https://pastebin.com/UxDTv4ML
This commit is contained in:
2026-05-06 21:43:03 +00:00
parent f3aa2ef0c6
commit 76751355e0

View File

@@ -292,9 +292,10 @@ void on_change_systray(void *obj)
} }
TrayWindow *traywin; TrayWindow *traywin;
GSList *l; GSList *l, *next;
int i; int i;
for (i = 1, l = systray.list_icons; l; i++, l = l->next) { for (i = 1, l = systray.list_icons; l; i++, l = next) {
next = l->next;
traywin = (TrayWindow *)l->data; traywin = (TrayWindow *)l->data;
traywin->y = posy; traywin->y = posy;