# HG changeset patch # User Paul Aurich # Date 1259464791 0 # Node ID 39a48c780bcb2c2e750cdd213e2c23df27e47528 # Parent ce29013a5f3a847f1d250c64b9aa2508a2e62c49 pidgin: Change the 'disabled' look in the Send To menu to apply to all offline buddies in a contact. I think this is more useful and seems reasonable now that most protocols (at least the ones I use) support offline messages. Closes #5464. diff -r ce29013a5f3a -r 39a48c780bcb ChangeLog --- a/ChangeLog Sun Nov 29 01:50:36 2009 +0000 +++ b/ChangeLog Sun Nov 29 03:19:51 2009 +0000 @@ -71,6 +71,9 @@ * Add a hold button to the media window. * Fix a bug where the conversation backlog stops scrolling in a very busy chat room. + * In the Conversation "Send To" menu, offline buddies appear grayed + out (but are still selectable). Previously, only offline buddies on + accounts that do not support offline messaging appeared grayed out. Pidgin Preference and Preference Window Changes: * Removed the "Use font from theme" and "Conversation Font" preferences diff -r ce29013a5f3a -r 39a48c780bcb pidgin/gtkconv.c --- a/pidgin/gtkconv.c Sun Nov 29 01:50:36 2009 +0000 +++ b/pidgin/gtkconv.c Sun Nov 29 03:19:51 2009 +0000 @@ -3903,8 +3903,7 @@ gtk_box_pack_start(GTK_BOX(box), label, TRUE, TRUE, 4); if (buddy != NULL && - !purple_presence_is_online(purple_buddy_get_presence(buddy)) && - !purple_account_supports_offline_message(account, buddy)) + !purple_presence_is_online(purple_buddy_get_presence(buddy))) { gtk_widget_set_sensitive(label, FALSE);