# HG changeset patch # User Paul Aurich # Date 1256515224 0 # Node ID 876ffa0f5465b925c5329fd4212ad62badd3dae4 # Parent 3e6b997b475da35322863e968df3235d56fded2b pidgin: Bold usernames with unread messages in the buddy list again. Closes #10068. diff -r 3e6b997b475d -r 876ffa0f5465 ChangeLog --- a/ChangeLog Sun Oct 25 23:35:09 2009 +0000 +++ b/ChangeLog Mon Oct 26 00:00:24 2009 +0000 @@ -44,6 +44,7 @@ widget name "pidgin_conv_userlist". (Heiko Schmitt) * Add a hold button to the media window. * Tooltips for custom smileys should work now. + * Users with unread messages are again bolded in the Buddy List. version 2.6.3 (10/16/2009): General: diff -r 3e6b997b475d -r 876ffa0f5465 pidgin/gtkblist.c --- 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("%s", tmp); + g_free(tmp); + } + /* Put it all together */ if ((!aliased || biglist) && (statustext || idletime)) { /* using breaks the status, so it must be seperated into */