# HG changeset patch # User Luke Schierer # Date 1082252239 0 # Node ID b3b3384bc1e60c8befe7944ab624115899cdc1c3 # Parent b3eae94bd5606f873ea90a9f18d72d77b4e7ddd7 [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 diff -r b3eae94bd560 -r b3b3384bc1e6 src/gtkconv.c --- 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, "%s", message); g_snprintf(buf2, sizeof(buf2), - "%s
", + "%s", 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, - "%s
", + "%s", 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), "
", 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, "
\n");