mirror of
https://github.com/irssi/irssi.git
synced 2025-02-02 15:08:01 -05:00
Send notify out messages with HILIGHT level too.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1411 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
93141c3a86
commit
8a9fcb53fc
@ -197,7 +197,7 @@ static void notifylist_left(IRC_SERVER_REC *server, const char *nick,
|
|||||||
{
|
{
|
||||||
g_return_if_fail(nick != NULL);
|
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,
|
nick, username, host, realname,
|
||||||
server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet);
|
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);
|
g_return_if_fail(nick != NULL);
|
||||||
|
|
||||||
if (awaymsg != NULL) {
|
if (awaymsg != NULL) {
|
||||||
printformat(server, NULL, MSGLEVEL_CLIENTNOTICE,
|
printformat(server, NULL, MSGLEVEL_CLIENTNOTICE | MSGLEVEL_HILIGHT,
|
||||||
IRCTXT_NOTIFY_AWAY, nick, username, host, realname, awaymsg,
|
IRCTXT_NOTIFY_AWAY, nick, username, host, realname, awaymsg,
|
||||||
server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet);
|
server->connrec->chatnet == NULL ? "IRC" : server->connrec->chatnet);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user