1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-01 04:14:16 -04:00

Fixed, added comment what it does so I wouldn't forget again :)

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1099 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-01-09 21:29:00 +00:00 committed by cras
parent d256f71a00
commit c5832fdc56

View File

@ -24,22 +24,25 @@
#include "fe-windows.h"
#include "gui-windows.h"
/* Don't send window activity if window is already visible in
another mainwindow */
static void sig_activity(WINDOW_REC *window)
{
/*GSList *tmp;
GSList *tmp;
if (!is_window_visible(window) || window->data_level == 0)
return;
window->new_data = 0;
window->data_level = 0;
window->hilight_color = 0;
for (tmp = window->items; tmp != NULL; tmp = tmp->next) {
WI_ITEM_REC *item = tmp->data;
item->new_data = 0;
item->last_color = 0;
item->data_level = 0;
item->hilight_color = 0;
}
signal_stop();*/
signal_stop();
}
void mainwindow_activity_init(void)