summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2001-03-03 18:40:50 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2001-03-03 18:40:50 +0000
commitf9474e2c3da697a634964480e03fb0659d914192 (patch)
tree2b6bb2ad6bf5bd596ce5c3e03a52f5197d61a82e /src
parent5c436a20a6f780b6f929de22ad975d5d95fa21a5 (diff)
downloadirssi-f9474e2c3da697a634964480e03fb0659d914192.zip
DCC actions have now ACTIONS level as well as the DCCMSGS.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1315 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src')
-rw-r--r--src/fe-common/irc/dcc/fe-dcc-chat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-common/irc/dcc/fe-dcc-chat.c b/src/fe-common/irc/dcc/fe-dcc-chat.c
index aa8a0eb6..7e943d53 100644
--- a/src/fe-common/irc/dcc/fe-dcc-chat.c
+++ b/src/fe-common/irc/dcc/fe-dcc-chat.c
@@ -115,7 +115,7 @@ static void dcc_chat_action(const char *msg, CHAT_DCC_REC *dcc)
sender = g_strconcat("=", dcc->id, NULL);
if (query_find(NULL, sender) == NULL)
completion_last_message_add(sender);
- printformat(NULL, sender, MSGLEVEL_DCCMSGS,
+ printformat(NULL, sender, MSGLEVEL_DCCMSGS | MSGLEVEL_ACTIONS,
IRCTXT_ACTION_DCC, dcc->id, msg);
g_free(sender);
}