# HG changeset patch # User Elliott Sales de Andrade # Date 1324540541 0 # Node ID 0cf09e1ae01a07aaa0906694d39d2e07a7daf312 # Parent 3a4a35f6f87386ef100e62b615e0869708ac4c92 It seems like we should be using this color tag for something... diff -r 3a4a35f6f873 -r 0cf09e1ae01a libpurple/protocols/bonjour/jabber.c --- 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);