# HG changeset patch # User pidgin@keithmoyer.com # Date 1284832229 0 # Node ID e787b5d9ee7d189d811af33d441d93336f36ed9d # Parent 55fb3dfd086b497f9ef1f9a2db520023107c67b9 Allow using the Send To menu in the case that the active conversation's account disconnects. Previously, the Send To menu was unusable in this case, making it impossible to simply switch accounts and continue the conversation. Fixes #12471. committer: John Bailey diff -r 55fb3dfd086b -r e787b5d9ee7d pidgin/gtkconv.c --- a/pidgin/gtkconv.c Sat Sep 18 17:34:35 2010 +0000 +++ b/pidgin/gtkconv.c Sat Sep 18 17:50:29 2010 +0000 @@ -3903,7 +3903,7 @@ continue; account = purple_buddy_get_account(buddy); - if (purple_account_is_connected(account)) + if (purple_account_is_connected(account) || account == gtkconv->active_conv->account) { /* Use the PurplePresence to get unique buddies. */ PurplePresence *presence = purple_buddy_get_presence(buddy);