diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-07-31 12:29:49 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-07-31 12:29:49 +0000 |
commit | 10d7c6c34aa632ed5403ba87faefbfcf44a78e5a (patch) | |
tree | 944130617bdff5d0a494459bc8e1f5a5786999d7 | |
parent | 38fa7c93ac3d35b2c895ee178add06718442e1ca (diff) | |
download | weechat-10d7c6c34aa632ed5403ba87faefbfcf44a78e5a.zip |
Fixed refrech bug when changing channel modes
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/irc/irc-recv.c | 2 | ||||
-rw-r--r-- | weechat/ChangeLog | 1 | ||||
-rw-r--r-- | weechat/src/irc/irc-recv.c | 2 |
4 files changed, 4 insertions, 2 deletions
@@ -5,6 +5,7 @@ ChangeLog - 2005-07-31 Version 0.1.5 (under dev!): + * fixed refrech bug when changing channel modes * jump to next server now saves current channel buffer for each server * ctrl-up/ctrl-down keys added to call previous/next command in global history (common to all buffers) diff --git a/src/irc/irc-recv.c b/src/irc/irc-recv.c index 010858782..1e831c9f0 100644 --- a/src/irc/irc-recv.c +++ b/src/irc/irc-recv.c @@ -866,7 +866,7 @@ irc_cmd_recv_mode (t_irc_server *server, char *host, char *arguments) if (ptr_channel) { irc_get_channel_modes (ptr_channel, arguments, host, pos, pos_parm); - gui_draw_buffer_status (ptr_channel->buffer, 0); + gui_draw_buffer_status (ptr_channel->buffer, 1); } else { diff --git a/weechat/ChangeLog b/weechat/ChangeLog index 2bc351fe3..7b37e9690 100644 --- a/weechat/ChangeLog +++ b/weechat/ChangeLog @@ -5,6 +5,7 @@ ChangeLog - 2005-07-31 Version 0.1.5 (under dev!): + * fixed refrech bug when changing channel modes * jump to next server now saves current channel buffer for each server * ctrl-up/ctrl-down keys added to call previous/next command in global history (common to all buffers) diff --git a/weechat/src/irc/irc-recv.c b/weechat/src/irc/irc-recv.c index 010858782..1e831c9f0 100644 --- a/weechat/src/irc/irc-recv.c +++ b/weechat/src/irc/irc-recv.c @@ -866,7 +866,7 @@ irc_cmd_recv_mode (t_irc_server *server, char *host, char *arguments) if (ptr_channel) { irc_get_channel_modes (ptr_channel, arguments, host, pos, pos_parm); - gui_draw_buffer_status (ptr_channel->buffer, 0); + gui_draw_buffer_status (ptr_channel->buffer, 1); } else { |