mirror of
https://github.com/weechat/weechat.git
synced 2026-06-30 23:06:38 +02:00
Fixed refresh bug with private buffer title
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-12-08
|
||||
ChangeLog - 2006-12-26
|
||||
|
||||
|
||||
Version 0.2.2 (under dev!):
|
||||
* fixed refresh bug with private buffer title
|
||||
* fixed bug with nick completion in command args (now uses option
|
||||
look_nick_completion_ignore)
|
||||
* fixed display bug with color for first line on screen (bug #17719)
|
||||
|
||||
@@ -963,7 +963,10 @@ irc_cmd_recv_notice (t_irc_server *server, char *host, char *nick, char *argumen
|
||||
BUFFER_TYPE_STANDARD, 0);
|
||||
}
|
||||
if (!ptr_channel->topic)
|
||||
{
|
||||
ptr_channel->topic = strdup ((host2) ? host2 : "");
|
||||
gui_chat_draw_title (ptr_channel->buffer, 1);
|
||||
}
|
||||
|
||||
gui_printf_type (ptr_channel->buffer, MSG_TYPE_NICK,
|
||||
"%s<",
|
||||
@@ -1887,7 +1890,10 @@ irc_cmd_recv_privmsg (t_irc_server *server, char *host, char *nick, char *argume
|
||||
BUFFER_TYPE_STANDARD, 0);
|
||||
}
|
||||
if (!ptr_channel->topic)
|
||||
{
|
||||
ptr_channel->topic = strdup (host2);
|
||||
gui_chat_draw_title (ptr_channel->buffer, 1);
|
||||
}
|
||||
|
||||
pos += 8;
|
||||
pos2 = strchr (pos, '\01');
|
||||
@@ -1997,7 +2003,10 @@ irc_cmd_recv_privmsg (t_irc_server *server, char *host, char *nick, char *argume
|
||||
BUFFER_TYPE_STANDARD, 0);
|
||||
}
|
||||
if (!ptr_channel->topic)
|
||||
{
|
||||
ptr_channel->topic = strdup (host2);
|
||||
gui_chat_draw_title (ptr_channel->buffer, 1);
|
||||
}
|
||||
|
||||
if (irc_is_highlight (pos, server->nick))
|
||||
{
|
||||
|
||||
+2
-1
@@ -1,10 +1,11 @@
|
||||
WeeChat - Wee Enhanced Environment for Chat
|
||||
===========================================
|
||||
|
||||
ChangeLog - 2006-12-08
|
||||
ChangeLog - 2006-12-26
|
||||
|
||||
|
||||
Version 0.2.2 (under dev!):
|
||||
* fixed refresh bug with private buffer title
|
||||
* fixed bug with nick completion in command args (now uses option
|
||||
look_nick_completion_ignore)
|
||||
* fixed display bug with color for first line on screen (bug #17719)
|
||||
|
||||
@@ -963,7 +963,10 @@ irc_cmd_recv_notice (t_irc_server *server, char *host, char *nick, char *argumen
|
||||
BUFFER_TYPE_STANDARD, 0);
|
||||
}
|
||||
if (!ptr_channel->topic)
|
||||
{
|
||||
ptr_channel->topic = strdup ((host2) ? host2 : "");
|
||||
gui_chat_draw_title (ptr_channel->buffer, 1);
|
||||
}
|
||||
|
||||
gui_printf_type (ptr_channel->buffer, MSG_TYPE_NICK,
|
||||
"%s<",
|
||||
@@ -1887,7 +1890,10 @@ irc_cmd_recv_privmsg (t_irc_server *server, char *host, char *nick, char *argume
|
||||
BUFFER_TYPE_STANDARD, 0);
|
||||
}
|
||||
if (!ptr_channel->topic)
|
||||
{
|
||||
ptr_channel->topic = strdup (host2);
|
||||
gui_chat_draw_title (ptr_channel->buffer, 1);
|
||||
}
|
||||
|
||||
pos += 8;
|
||||
pos2 = strchr (pos, '\01');
|
||||
@@ -1997,7 +2003,10 @@ irc_cmd_recv_privmsg (t_irc_server *server, char *host, char *nick, char *argume
|
||||
BUFFER_TYPE_STANDARD, 0);
|
||||
}
|
||||
if (!ptr_channel->topic)
|
||||
{
|
||||
ptr_channel->topic = strdup (host2);
|
||||
gui_chat_draw_title (ptr_channel->buffer, 1);
|
||||
}
|
||||
|
||||
if (irc_is_highlight (pos, server->nick))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user