1
0
mirror of https://github.com/irssi/irssi.git synced 2024-12-04 14:46:39 -05:00
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@595 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-08-12 23:51:53 +00:00 committed by cras
parent 98b037ac71
commit 9fe81dcaf0

View File

@ -26,7 +26,19 @@
static void sig_activity(WINDOW_REC *window) static void sig_activity(WINDOW_REC *window)
{ {
if (is_window_visible(window)) GSList *tmp;
if (!is_window_visible(window) || window->new_data == 0)
return;
window->new_data = 0;
for (tmp = window->items; tmp != NULL; tmp = tmp->next) {
WI_ITEM_REC *item = tmp->data;
item->new_data = 0;
item->last_color = 0;
}
signal_stop(); signal_stop();
} }