changeset 8690:b3b3384bc1e6

[gaim-migrate @ 9443] (21:31:24) marv: LSchiere2: i have a patch that fixes the extra new lines for system messages (21:31:29) LSchiere2: cool (21:32:43) marv: can i just dcc it to you? (21:33:09) LSchiere2: can gaim recieve dcc? (21:33:18) marv: yes (21:33:20) LSchiere2: then yes (21:33:27) LSchiere2: oh and i miss the empty line ;-) (21:34:17) marv: heh (21:35:16) marv: i could bring it back by popular demand (21:35:35) marv: or just add a bottom margin (21:36:10) LSchiere2: what did i just accept? i hate that about file transfer. i always forget the name (21:36:28) marv: you could turn off clear finished transfers :P (21:36:34) marv: gtkconv.extranewlines.fixed.diff (21:36:45) LSchiere2: thanks committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 18 Apr 2004 01:37:19 +0000
parents b3eae94bd560
children 0eb5161ef333
files src/gtkconv.c
diffstat 1 files changed, 2 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkconv.c	Sun Apr 18 01:33:00 2004 +0000
+++ b/src/gtkconv.c	Sun Apr 18 01:37:19 2004 +0000
@@ -4569,7 +4569,7 @@
 			g_snprintf(buf, BUF_LONG, "<B>%s</B>", message);
 
 		g_snprintf(buf2, sizeof(buf2),
-			   "<FONT %s><FONT SIZE=\"2\"><!--(%s) --></FONT><B>%s</B></FONT><BR>",
+			   "<FONT %s><FONT SIZE=\"2\"><!--(%s) --></FONT><B>%s</B></FONT>",
 			   sml_attrib, mdate, message);
 
 		gtk_imhtml_append_text_with_images(GTK_IMHTML(gtkconv->imhtml),
@@ -4581,7 +4581,7 @@
 
 	} else if (flags & GAIM_MESSAGE_NO_LOG) {
 		g_snprintf(buf, BUF_LONG,
-			   "<B><FONT %s COLOR=\"#777777\">%s</FONT></B><BR>",
+			   "<B><FONT %s COLOR=\"#777777\">%s</FONT></B>",
 			   sml_attrib, message);
 
 		gtk_imhtml_append_text_with_images(GTK_IMHTML(gtkconv->imhtml),
@@ -4686,8 +4686,6 @@
 		gtk_imhtml_append_text_with_images(GTK_IMHTML(gtkconv->imhtml),
 							 with_font_tag, gtk_font_options, images);
 
-		//gtk_imhtml_append_text(GTK_IMHTML(gtkconv->imhtml), "<BR>", 0);
-
 		conv->history = g_string_append(conv->history, buf);
 		conv->history = g_string_append(conv->history, new_message);
 		conv->history = g_string_append(conv->history, "<BR>\n");