diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-04-03 09:35:08 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-04-03 09:35:08 +0000 |
commit | 212ec7a76dbc408abec8af508e8ba55a02129b12 (patch) | |
tree | 4e0295ef32ba54e89032a54a6b432c87e7aaf7d4 /src/irc/irc-send.c | |
parent | 08b0272a9b4a0a8f9e4e8c66d10132c5bf48c932 (diff) | |
download | weechat-212ec7a76dbc408abec8af508e8ba55a02129b12.zip |
Added nick alignment in private buffers
Diffstat (limited to 'src/irc/irc-send.c')
-rw-r--r-- | src/irc/irc-send.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/irc/irc-send.c b/src/irc/irc-send.c index c942e3d38..7eb9979bf 100644 --- a/src/irc/irc-send.c +++ b/src/irc/irc-send.c @@ -209,7 +209,7 @@ irc_cmd_send_amsg (t_irc_server *server, t_irc_channel *channel, if (ptr_nick) { irc_display_nick (ptr_channel->buffer, ptr_nick, NULL, - MSG_TYPE_NICK, 1, 1, 0); + MSG_TYPE_NICK, 1, -1, 0); string = (char *)gui_color_decode ((unsigned char *)arguments, 1); gui_printf (ptr_channel->buffer, "%s\n", (string) ? string : arguments); if (string) @@ -1283,7 +1283,7 @@ irc_cmd_send_msg (t_irc_server *server, t_irc_channel *channel, ptr_nick = NULL; irc_display_nick (buffer, ptr_nick, (ptr_nick) ? NULL : server->nick, - MSG_TYPE_NICK, 1, 1, 0); + MSG_TYPE_NICK, 1, -1, 0); string = (char *)gui_color_decode ((unsigned char *)pos, 1); gui_printf_type (buffer, MSG_TYPE_MSG, "%s\n", (string) ? string : ""); @@ -1303,7 +1303,7 @@ irc_cmd_send_msg (t_irc_server *server, t_irc_channel *channel, if (ptr_nick) { irc_display_nick (ptr_channel->buffer, ptr_nick, NULL, - MSG_TYPE_NICK, 1, 1, 0); + MSG_TYPE_NICK, 1, -1, 0); string = (char *)gui_color_decode ((unsigned char *)pos, 1); gui_printf_type (ptr_channel->buffer, MSG_TYPE_MSG, "%s\n", (string) ? string : ""); |