diff src/conversation.c @ 820:fe2e1ad4495b

[gaim-migrate @ 830] yay committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 01 Sep 2000 08:13:07 +0000
parents 2f0f06f7319f
children 9a123b171f46
line wrap: on
line diff
--- a/src/conversation.c	Fri Sep 01 03:56:57 2000 +0000
+++ b/src/conversation.c	Fri Sep 01 08:13:07 2000 +0000
@@ -1503,6 +1503,7 @@
 	GtkWidget *paned;
 	GtkWidget *add;
 	GtkWidget *toolbar;
+	GtkWidget *sep;
 	int dispstyle;
 	
 	win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
@@ -1599,10 +1600,16 @@
 	gtk_widget_set_usize(entry, 300, 25);
 
 	gtk_box_pack_end(GTK_BOX(bbox), close, dispstyle, dispstyle, 0);
+	sep = gtk_vseparator_new();
+	gtk_widget_show(sep);
+	gtk_box_pack_end(GTK_BOX(bbox), sep, dispstyle, dispstyle, 0);
 	gtk_box_pack_end(GTK_BOX(bbox), add, dispstyle, dispstyle, 0);
 	gtk_box_pack_end(GTK_BOX(bbox), block, dispstyle, dispstyle, 0);
 	gtk_box_pack_end(GTK_BOX(bbox), warn, dispstyle, dispstyle, 0);
 	gtk_box_pack_end(GTK_BOX(bbox), info, dispstyle, dispstyle, 0);
+	sep = gtk_vseparator_new();
+	gtk_widget_show(sep);
+	gtk_box_pack_end(GTK_BOX(bbox), sep, dispstyle, dispstyle, 0);
 	gtk_box_pack_end(GTK_BOX(bbox), send, dispstyle, dispstyle, 0);
 	
 	/* pack and fill the rest */