diff src/buddy.c @ 5041:c4b691b0cc0d

[gaim-migrate @ 5385] some dragging fixes. hopefully kill off the last of the hangs and crashes associated with dragging buddies and editng the list committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 05 Apr 2003 18:47:34 +0000
parents cb700c07ee07
children e40d52cffd51
line wrap: on
line diff
--- a/src/buddy.c	Sat Apr 05 18:46:37 2003 +0000
+++ b/src/buddy.c	Sat Apr 05 18:47:34 2003 +0000
@@ -1410,13 +1410,8 @@
 
 	if (get_iter_from_node(node, &iter)) {
 		gtk_tree_store_remove(gtkblist->treemodel, &iter);
-		if(GAIM_BLIST_NODE_IS_BUDDY(node) &&
-		   !(blist_options & OPT_BLIST_SHOW_OFFLINE) &&
-		   (blist_options & OPT_BLIST_NO_MT_GRP) &&
-		   !gaim_blist_get_group_online_count((struct group *)node->parent)) {
-			GtkTreeIter groupiter;
-			if(get_iter_from_node(node->parent, &groupiter))
-				gtk_tree_store_remove(gtkblist->treemodel, &groupiter);
+		if(GAIM_BLIST_NODE_IS_BUDDY(node)) {
+			gaim_gtk_blist_update(list, node->parent);
 		}
 	}
 }