# HG changeset patch # User Elliott Sales de Andrade # Date 1219038927 0 # Node ID ca3dc911bf522eef996081590698743656f107c0 # Parent 48958ca5abad146ed9c4cee11a83421bf5b3deaa A patch from nowic to re-colorize the greyed out icon when a buddy signs on again and desaturate the icon when starting a conversation with an offline buddy. Fixes #3590. diff -r 48958ca5abad -r ca3dc911bf52 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Mon Aug 18 01:00:58 2008 +0000 +++ b/pidgin/gtkconv.c Mon Aug 18 05:55:27 2008 +0000 @@ -7370,7 +7370,9 @@ if (gtkconv) { conv = gtkconv->active_conv; - pidgin_conv_update_fields(conv, PIDGIN_CONV_TAB_ICON | PIDGIN_CONV_COLORIZE_TITLE); + pidgin_conv_update_fields(conv, PIDGIN_CONV_TAB_ICON + | PIDGIN_CONV_COLORIZE_TITLE + | PIDGIN_CONV_BUDDY_ICON); if ((purple_status_is_online(old) ^ purple_status_is_online(newstatus)) != 0) pidgin_conv_update_fields(conv, PIDGIN_CONV_MENU); }