diff pidgin/gtkimhtml.c @ 23169:88d67b1bb52a

Get rid of the boldness of the bold timestamps.
author Sadrul Habib Chowdhury <imadil@gmail.com>
date Thu, 22 May 2008 21:19:31 +0000
parents 9f94bf3743c2
children e0bcb8cfda74 ed61297e80c8 acef4202e147
line wrap: on
line diff
--- a/pidgin/gtkimhtml.c	Thu May 22 17:47:50 2008 +0000
+++ b/pidgin/gtkimhtml.c	Thu May 22 21:19:31 2008 +0000
@@ -5003,7 +5003,7 @@
 		GObject *obj = G_OBJECT(tag);
 		gboolean empty = TRUE;
 
-		str += g_snprintf(str, sizeof(buf) - (str - buf), "<font style='");
+		str += g_snprintf(str, sizeof(buf) - (str - buf), "<span style='");
 
 		/* Weight */
 		g_object_get(obj, "weight-set", &isset, "weight", &ivalue, NULL);
@@ -5095,7 +5095,7 @@
 			gboolean set = FALSE;
 			g_object_get(G_OBJECT(tag), props[i], &set, NULL);
 			if (set)
-				return "</font>";
+				return "</span>";
 		}
 
 		return "";