Systray: do not move empty icons to the side, as it breaks GTK2 StatusIcon blinking (issue #515)

This commit is contained in:
o9000 2015-08-03 19:40:35 +02:00 committed by Ovidiu Mara
parent ed24d0bd4c
commit 84f9f6d0cd

View file

@ -419,10 +419,13 @@ static gint compare_traywindows(gconstpointer a, gconstpointer b)
const TrayWindow * traywin_a = (TrayWindow*)a;
const TrayWindow * traywin_b = (TrayWindow*)b;
#if 0
// This breaks pygtk2 StatusIcon with blinking activated
if (traywin_a->empty && !traywin_b->empty)
return 1 * (systray.sort == SYSTRAY_SORT_RIGHT2LEFT ? -1 : 1);
if (!traywin_a->empty && traywin_b->empty)
return -1 * (systray.sort == SYSTRAY_SORT_RIGHT2LEFT ? -1 : 1);
#endif
if (systray.sort == SYSTRAY_SORT_ASCENDING ||
systray.sort == SYSTRAY_SORT_DESCENDING) {