Mercurial > pidgin
changeset 14562:78d0f3c4c9ff
[gaim-migrate @ 17285]
Thinking about it, group counts are kinda stupid. I think I've been their major
defender in the various prefslashes, so I don't think anyone objects to me
removing them.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Sat, 16 Sep 2006 00:56:13 +0000 |
parents | 3ff55ec8203a |
children | c7a1dc62b312 |
files | gtk/gtkblist.c |
diffstat | 1 files changed, 3 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/gtk/gtkblist.c Fri Sep 15 22:05:34 2006 +0000 +++ b/gtk/gtkblist.c Sat Sep 16 00:56:13 2006 +0000 @@ -4401,14 +4401,11 @@ esc = g_markup_escape_text(group->name, -1); if (selected) - mark = g_strdup_printf("<span weight='bold'>%s</span> (%d/%d)", - esc, gaim_blist_get_group_online_count(group), - gaim_blist_get_group_size(group, FALSE)); + mark = g_strdup_printf("<span weight='bold'>%s</span>",esc); else - mark = g_strdup_printf("<span color='#%02x%02x%02x'><span weight='bold'>%s</span> (%d/%d)</span>", + mark = g_strdup_printf("<span color='#%02x%02x%02x' weight='bold'>%s</span>", textcolor.red>>8, textcolor.green>>8, textcolor.blue>>8, - esc, gaim_blist_get_group_online_count(group), - gaim_blist_get_group_size(group, FALSE)); + esc); g_free(esc);