# HG changeset patch # User Sadrul Habib Chowdhury # Date 1202788738 0 # Node ID 40707fbabcbcb2b42c793762a0a681f74f4edce3 # Parent ae719d4a2f418c4b06ce03cf79fe07ed1a532def Highlighted message color has a higher priority over an action message color. diff -r ae719d4a2f41 -r 40707fbabcbc finch/gntconv.c --- a/finch/gntconv.c Sat Feb 09 07:54:02 2008 +0000 +++ b/finch/gntconv.c Tue Feb 12 03:58:58 2008 +0000 @@ -837,7 +837,11 @@ if (purple_message_meify((char*)message, -1)) { name = g_strdup_printf("*** %s", who); - msgflags = gnt_color_pair(color_message_action); + if (!(flags & PURPLE_MESSAGE_SEND) && + (flags & PURPLE_MESSAGE_NICK)) + msgflags = gnt_color_pair(color_message_highlight); + else + msgflags = gnt_color_pair(color_message_action); me = TRUE; } else { name = g_strdup_printf("%s", who);