1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

Actions will now show up in window activity with hilight or

message-color, not the text-color as before.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@643 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-09-04 23:39:42 +00:00 committed by cras
parent 3edf444ca1
commit e75bea0afa

View File

@ -38,8 +38,9 @@ static void sig_hilight_text(WINDOW_REC *window, SERVER_REC *server, const char
if (window == active_win || (level & (MSGLEVEL_NEVER|MSGLEVEL_NO_ACT)))
return;
new_data = (level & MSGLEVEL_HILIGHT) ?
NEWDATA_HILIGHT : NEWDATA_TEXT;
new_data = (level & (MSGLEVEL_HILIGHT|MSGLEVEL_MSGS)) ?
NEWDATA_HILIGHT :
((level & MSGLEVEL_PUBLIC) ? NEWDATA_MSG : NEWDATA_TEXT);
if (new_data < NEWDATA_HILIGHT &&
channel != NULL && find_substr(noact_channels, channel))