pidgin: 27fe35b5: pidgin: Change the 'disabled' look in th...
darkrain42 at pidgin.im
darkrain42 at pidgin.im
Sat Nov 28 22:31:36 EST 2009
-----------------------------------------------------------------
Revision: 27fe35b5c7fd5b21af46c5f58bea6e31ba32e323
Ancestor: dca326117c63899086cbb34178d48ec19c767111
Author: darkrain42 at pidgin.im
Date: 2009-11-29T03:19:51
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/27fe35b5c7fd5b21af46c5f58bea6e31ba32e323
Modified files:
ChangeLog pidgin/gtkconv.c
ChangeLog:
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.
-------------- next part --------------
============================================================
--- ChangeLog 7e0ac393d8f4ac5d0bcf45d6480a39bc6db148ea
+++ ChangeLog b37cbfc84da6e46e676939ea0adae9bd8e4a5f3c
@@ -71,6 +71,9 @@ version 2.6.4 (??/??/20??):
* 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
============================================================
--- pidgin/gtkconv.c a3c79f3228adb5cd68e06f5321f451a75fdb0de0
+++ pidgin/gtkconv.c 2e655f4499d182169e3de77a172ca55839816e52
@@ -3903,8 +3903,7 @@ create_sendto_item(GtkWidget *menu, GtkS
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);
More information about the Commits
mailing list