# HG changeset patch # User Sadrul Habib Chowdhury # Date 1178745305 0 # Node ID d637851abeb8e32562d0afd079cf87ded5c7d09c # Parent 563a42d98e3a66774b067a48169c0c017e3552e8 Make get-info behave the same way from both the conversation window menu and the buddylist context menu. diff -r 563a42d98e3a -r d637851abeb8 finch/gntconv.c --- a/finch/gntconv.c Wed May 09 21:03:40 2007 +0000 +++ b/finch/gntconv.c Wed May 09 21:15:05 2007 +0000 @@ -303,6 +303,11 @@ get_info_cb(GntMenuItem *item, gpointer ggconv) { FinchConv *ggc = ggconv; + PurpleNotifyUserInfo *info = purple_notify_user_info_new(); + purple_notify_user_info_add_pair(info, _("Information"), _("Retrieving...")); + purple_notify_userinfo(ggc->active_conv->account->gc, purple_conversation_get_name(ggc->active_conv), info, NULL, NULL); + purple_notify_user_info_destroy(info); + serv_get_info(purple_conversation_get_gc(ggc->active_conv), purple_conversation_get_name(ggc->active_conv)); }