diff pidgin/gtkblist.c @ 17789:f13334f5717e

show the "Retrieving..." window whenever we request user info. Fixes #1617.
author Nathan Walp <nwalp@pidgin.im>
date Sun, 10 Jun 2007 15:50:19 +0000
parents 5d52c1763eb9
children 0e445e906cfd 18b62b0fc253
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Fri Jun 08 12:52:35 2007 +0000
+++ b/pidgin/gtkblist.c	Sun Jun 10 15:50:19 2007 +0000
@@ -1167,7 +1167,7 @@
 			return FALSE;
 		}
 		if(buddy)
-			serv_get_info(buddy->account->gc, buddy->name);
+			gtk_blist_menu_info_cb(NULL, buddy);
 	} else if (event->keyval == GDK_F2) {
 		gtk_blist_menu_alias_cb(tv, node);
 	}
@@ -1421,7 +1421,7 @@
 			prpl_info = PURPLE_PLUGIN_PROTOCOL_INFO(prpl);
 
 		if (prpl && prpl_info->get_info)
-			serv_get_info(b->account->gc, b->name);
+			gtk_blist_menu_info_cb(NULL, b);
 		handled = TRUE;
 	}