From 8a9fcb53fc4154787cbdaaf7c905ea6ab5c965cd Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Tue, 20 Mar 2001 02:00:17 +0000 Subject: [PATCH] Send notify out messages with HILIGHT level too. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1411 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/irc/notifylist/fe-notifylist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fe-common/irc/notifylist/fe-notifylist.c b/src/fe-common/irc/notifylist/fe-notifylist.c index 7ccfa98e..dd4cbd2f 100644 --- a/src/fe-common/irc/notifylist/fe-notifylist.c +++ b/src/fe-common/irc/notifylist/fe-notifylist.c @@ -197,7 +197,7 @@ static void notifylist_left(IRC_SERVER_REC *server, const char *nick, { g_return_if_fail(nick != NULL); - printformat(server, NULL, MSGLEVEL_CLIENTNOTICE, IRCTXT_NOTIFY_PART, + printformat(server, NULL, MSGLEVEL_CLIENTNOTICE | MSGLEVEL_HILIGHT, IRCTXT_NOTIFY_PART, nick, username, host, realname, server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet); } @@ -209,7 +209,7 @@ static void notifylist_away(IRC_SERVER_REC *server, const char *nick, g_return_if_fail(nick != NULL); if (awaymsg != NULL) { - printformat(server, NULL, MSGLEVEL_CLIENTNOTICE, + printformat(server, NULL, MSGLEVEL_CLIENTNOTICE | MSGLEVEL_HILIGHT, IRCTXT_NOTIFY_AWAY, nick, username, host, realname, awaymsg, server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet); } else {