changeset 7850:9ca340251309

[gaim-migrate @ 8504] show smileys correctly in a couple places committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Sat, 13 Dec 2003 18:35:38 +0000
parents 2920debcb3c3
children 3eab6ac5e4a7
files src/gtkconv.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkconv.c	Sat Dec 13 18:27:56 2003 +0000
+++ b/src/gtkconv.c	Sat Dec 13 18:35:38 2003 +0000
@@ -4500,8 +4500,8 @@
 			g_snprintf(buf, BUF_LONG, "<B>%s</B>", message);
 
 		g_snprintf(buf2, sizeof(buf2),
-			   "<!--(%s) --><B>%s</B><BR>",
-			   mdate, message);
+			   "<FONT %s><!--(%s) --><B>%s</B></FONT><BR>",
+			   sml_attrib, mdate, message);
 
 		gtk_imhtml_append_text_with_images(GTK_IMHTML(gtkconv->imhtml), buf2, 0, images);
 
@@ -4511,8 +4511,8 @@
 
 	} else if (flags & GAIM_MESSAGE_NO_LOG) {
 		g_snprintf(buf, BUF_LONG,
-			   "<B><FONT COLOR=\"#777777\">%s</FONT></B><BR>",
-			   message);
+			   "<B><FONT %s COLOR=\"#777777\">%s</FONT></B><BR>",
+			   sml_attrib, message);
 
 		gtk_imhtml_append_text_with_images(GTK_IMHTML(gtkconv->imhtml), buf, 0, images);
 	}