# HG changeset patch # User Mikael Berthe # Date 1265718308 -3600 # Node ID 68981c37ed3f981fd1542c6c5d311cf316344055 # Parent 446d597b9490bc13de0777595755076904e031e5 Fix roster issue reported by DavidP Folded groups with long names were incorrectly displayed with "---". diff -r 446d597b9490 -r 68981c37ed3f mcabber/mcabber/screen.c --- a/mcabber/mcabber/screen.c Mon Feb 08 22:17:04 2010 +0100 +++ b/mcabber/mcabber/screen.c Tue Feb 09 13:25:08 2010 +0100 @@ -1978,7 +1978,7 @@ group_count); /* Do not display the item count if there isn't enough space */ if (g_utf8_strlen(rline, 4*Roster_Width) >= Roster_Width) - snprintf(rline, 4*Roster_Width, " %c--- %s", pending, name); + snprintf(rline, 4*Roster_Width, " %c+++ %s", pending, name); } else snprintf(rline, 4*Roster_Width, " %c--- %s", pending, name);