changeset 1710:68981c37ed3f

Fix roster issue reported by DavidP Folded groups with long names were incorrectly displayed with "---".
author Mikael Berthe <mikael@lilotux.net>
date Tue, 09 Feb 2010 13:25:08 +0100
parents 446d597b9490
children 3a1afbfb28dd
files mcabber/mcabber/screen.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);