Mercurial > pidgin.yaz
changeset 23848:ca3dc911bf52
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.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Mon, 18 Aug 2008 05:55:27 +0000 |
parents | 48958ca5abad |
children | 2f588ade5236 5e4aa29dc06f e22bcca9f2b2 |
files | pidgin/gtkconv.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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); }