mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
Some hilight+window activity related fixes
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@761 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
6e0d956f3d
commit
228c1d7f36
3 changed files with 17 additions and 15 deletions
|
|
@ -433,10 +433,12 @@ static void sig_statusbar_activity_hilight(WINDOW_REC *window, gpointer oldlevel
|
|||
activity_list = g_list_remove(activity_list, window);
|
||||
statusbar_item_redraw(activity_item);
|
||||
}
|
||||
else if (window->new_data != GPOINTER_TO_INT(oldlevel))
|
||||
else if (window->new_data != GPOINTER_TO_INT(oldlevel) ||
|
||||
window->last_color != 0)
|
||||
{
|
||||
/* different level as last time, just redraw it. */
|
||||
statusbar_item_redraw(activity_item);
|
||||
/* different level as last time (or maybe different
|
||||
hilight color?), just redraw it. */
|
||||
statusbar_item_redraw(activity_item);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue