Mercurial > pidgin
changeset 4396:868ee63e1fe8
[gaim-migrate @ 4665]
this doesn't need to be checked here, and I had the check wrong. oops :-P
this will make groups stop disappearing when you remove a buddy
committer: Tailor Script <tailor@pidgin.im>
author | Nathan Walp <nwalp@pidgin.im> |
---|---|
date | Wed, 22 Jan 2003 23:17:13 +0000 |
parents | eed028527289 |
children | ce3a0eba91ef |
files | src/buddy.c |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buddy.c Wed Jan 22 20:45:32 2003 +0000 +++ b/src/buddy.c Wed Jan 22 23:17:13 2003 +0000 @@ -814,9 +814,8 @@ remove_buddy_show(gs, bs); g_free(bs->name); g_free(bs); - if ((!g_slist_length(gs->members) && - (blist_options & OPT_BLIST_NO_MT_GRP)) || - gaim_group_on_account(rem_g, NULL)) { + if (!g_slist_length(gs->members) && + (blist_options & OPT_BLIST_NO_MT_GRP)) { shows = g_slist_remove(shows, gs); gtk_tree_remove_item(GTK_TREE(buddies), gs->item); g_free(gs->name);