diff pidgin/gtkblist.c @ 28807:876ffa0f5465

pidgin: Bold usernames with unread messages in the buddy list again. Closes #10068.
author Paul Aurich <paul@darkrain42.org>
date Mon, 26 Oct 2009 00:00:24 +0000
parents 0d9f5172ebc9
children 3e5a37c743df 2930170ca3c0 e3206d6da6c7
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Sun Oct 25 23:35:09 2009 +0000
+++ b/pidgin/gtkblist.c	Mon Oct 26 00:00:24 2009 +0000
@@ -4184,6 +4184,12 @@
 		}
 	}
 
+	if (hidden_conv) {
+		char *tmp = nametext;
+		nametext = g_strdup_printf("<b>%s</b>", tmp);
+		g_free(tmp);
+	}
+
 	/* Put it all together */
 	if ((!aliased || biglist) && (statustext || idletime)) {
 		/* using <span size='smaller'> breaks the status, so it must be seperated into <small><span>*/