fix xtray blinking on unselected events
This commit is contained in:
parent
2572d46e67
commit
34144faca5
|
@ -167,10 +167,9 @@ int event_cb(char *word[], void *userdata)
|
||||||
free(szTemp);
|
free(szTemp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(g_dwPrefs & (1<<PREF_BLINK))
|
if(g_dwPrefs & (1<<PREF_BLINK) && (g_dwPrefs & (1<<iEvent)))
|
||||||
{
|
{
|
||||||
BlinkIcon(g_hXchatWnd, 1, g_hIcons[0], g_hIcons[(iEvent+1)], 700, 5);
|
BlinkIcon(g_hXchatWnd, 1, g_hIcons[0], g_hIcons[(iEvent+1)], 700, 5);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/***********************************/
|
/***********************************/
|
||||||
|
|
Loading…
Reference in New Issue