Mercurial > pidgin
changeset 32409:0cf09e1ae01a
It seems like we should be using this color tag for something...
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Thu, 22 Dec 2011 07:55:41 +0000 |
parents | 3a4a35f6f873 |
children | f07501af8bae |
files | libpurple/protocols/bonjour/jabber.c |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/bonjour/jabber.c Thu Dec 22 07:40:15 2011 +0000 +++ b/libpurple/protocols/bonjour/jabber.c Thu Dec 22 07:55:41 2011 +0000 @@ -206,7 +206,9 @@ g_string_append_printf(str, " face='%s'", font_face); if (font_size) g_string_append_printf(str, " size='%s'", font_size); - if (ichat_text_color) + if (font_color) + g_string_append_printf(str, " color='%s'", font_color); + else if (ichat_text_color) g_string_append_printf(str, " color='%s'", ichat_text_color); if (ichat_balloon_color) g_string_append_printf(str, " back='%s'", ichat_balloon_color);