diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-07-16 11:04:10 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-07-16 11:04:10 +0000 |
commit | 4c4f5ab01243f87c3640f6aacf0219d2d52aa91f (patch) | |
tree | 7c31240c5ede084795be739828d8011f72c66af8 /src/irc/irc-nick.c | |
parent | c308b2ec1f59cbc70847128c018f1c277fa31e74 (diff) | |
download | weechat-4c4f5ab01243f87c3640f6aacf0219d2d52aa91f.zip |
added some panel functions, fixed refresh bugs when terminal is resized: too many refreshs, display bug with splited windows
Diffstat (limited to 'src/irc/irc-nick.c')
-rw-r--r-- | src/irc/irc-nick.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/irc/irc-nick.c b/src/irc/irc-nick.c index a3ec4fa6b..a29132f71 100644 --- a/src/irc/irc-nick.c +++ b/src/irc/irc-nick.c @@ -408,7 +408,7 @@ nick_set_away (t_irc_channel *channel, t_irc_nick *nick, int is_away) ((!is_away) && (nick->flags & NICK_AWAY))) { NICK_SET_FLAG(nick, is_away, NICK_AWAY); - gui_nicklist_draw (channel->buffer, 0); + gui_nicklist_draw (channel->buffer, 0, 0); } } } |