From 487da4174504f797171f12a01636c54272ec6a62 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Thu, 25 May 2000 11:11:23 +0000 Subject: [PATCH] now other than long nicks in NAMES list were displayed wrong. changed back to old behaviour, but added a small kludge.. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@229 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/irc/fe-events-numeric.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fe-common/irc/fe-events-numeric.c b/src/fe-common/irc/fe-events-numeric.c index 2d24529c..89e9b969 100644 --- a/src/fe-common/irc/fe-events-numeric.c +++ b/src/fe-common/irc/fe-events-numeric.c @@ -80,7 +80,8 @@ static void display_sorted_nicks(CHANNEL_REC *channel, GSList *nicklist, gint it str = g_string_new(NULL); cols = max > 65 ? 1 : (65 / (max+3)); /* "[] " */ - lines = items <= cols ? 1 : (items-(cols-1)) / cols; + lines = items <= cols ? 1 : items/cols + 1; + if (lines > items) lines = items; last = NULL; linebuf = g_malloc(max+1); linebuf[max] = '\0'; for (line = 0, col = 0, skip = 1, tmp = nicklist; line < lines; last = rec, tmp = tmp->next)