changeset 26291:fb937c4c2a50

Fix displaying of status messages in the conversation infopane. Rekkanoryo thinks this is okay (and it doesn't seem to have broken anything else that I've noticed). Fixes #8670.
author Paul Aurich <paul@darkrain42.org>
date Wed, 25 Mar 2009 06:07:44 +0000
parents 4f6228f14461
children 098a0b102606 dc3258ad4462
files pidgin/gtkblist.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkblist.c	Tue Mar 24 00:39:16 2009 +0000
+++ b/pidgin/gtkblist.c	Wed Mar 25 06:07:44 2009 +0000
@@ -3898,7 +3898,7 @@
 	presence = purple_buddy_get_presence(b);
 
 	/* Name is all that is needed */
-	if (aliased && biglist) {
+	if (!aliased || biglist) {
 
 		/* Status Info */
 		prpl = purple_find_prpl(purple_account_get_protocol_id(b->account));
@@ -4038,7 +4038,7 @@
 	}
 
 	/* Put it all together */
-	if (aliased && biglist && (statustext || idletime)) {
+	if ((!aliased || biglist) && (statustext || idletime)) {
 		/* using <span size='smaller'> breaks the status, so it must be seperated into <small><span>*/
 		if (name_color) {
 			text = g_strdup_printf("<span font_desc='%s' foreground='%s'>%s</span>\n"