# HG changeset patch # User Etan Reisner # Date 1246995338 0 # Node ID b2106bf5a6b4abdb096a839a5c6bdbf2d630471b # Parent beb9f969d06e52a66a912e2e06c4d83862c74908 Apparently font_weight was only relatively recently added to pango, so use weight instead. Thanks poizon. Closes #9632 diff -r beb9f969d06e -r b2106bf5a6b4 pidgin/gtkblist.c --- a/pidgin/gtkblist.c Tue Jul 07 18:18:56 2009 +0000 +++ b/pidgin/gtkblist.c Tue Jul 07 19:35:38 2009 +0000 @@ -6321,15 +6321,15 @@ mark = g_strdup_printf("%s%s%s%s", text_color, text_font, esc ? esc : "", - !expanded ? " (" : "", + !expanded ? " (" : "", group_count, - !expanded ? ")" : ""); + !expanded ? ")" : ""); } else { mark = g_strdup_printf("%s%s%s%s", text_font, esc ? esc : "", - !expanded ? " (" : "", + !expanded ? " (" : "", group_count, - !expanded ? ")" : ""); + !expanded ? ")" : ""); } g_free(esc);