summary refs log tree commit diff stats
path: root/src/fe-gtk/rawlog.c
diff options
context:
space:
mode:
authorTingPing <tingping@tingping.se>2014-11-30 22:33:30 -0500
committerTingPing <tingping@tingping.se>2014-11-30 22:33:30 -0500
commit05a6097dc659e6567e2d081061a44a585ddc5f67 (patch)
tree4752a9531433f5dba8b67bb15ee8bbd2178e5678 /src/fe-gtk/rawlog.c
parent85557f2416d8efd0a8178cab91dbccf4d9bfb5b3 (diff)
Fix copying timestamp with server-time and indent nicks off
Diffstat (limited to 'src/fe-gtk/rawlog.c')
-rw-r--r--src/fe-gtk/rawlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/rawlog.c b/src/fe-gtk/rawlog.c
index f2527492..24ebf041 100644
--- a/src/fe-gtk/rawlog.c
+++ b/src/fe-gtk/rawlog.c
@@ -163,7 +163,7 @@ fe_add_rawlog (server *serv, char *text, int len, int outbound)
 		else
 			new_text = g_strconcat ("\0033>>\017 ", split_text[i], NULL);
 
-		gtk_xtext_append (GTK_XTEXT (serv->gui->rawlog_textlist)->buffer, new_text, strlen (new_text));
+		gtk_xtext_append (GTK_XTEXT (serv->gui->rawlog_textlist)->buffer, new_text, strlen (new_text), 0);
 
 		g_free (new_text);
 	}