summary refs log tree commit diff stats
path: root/src/fe-gtk
diff options
context:
space:
mode:
authorTingPing <tngpng@gmail.com>2013-04-01 03:54:42 -0300
committerTingPing <tngpng@gmail.com>2013-04-01 03:54:42 -0300
commit9594ec8913e0ae81baf394e4039d3e2e08dce599 (patch)
tree9eb9ff77ae977e2a3570ea666787da14f3f081ee /src/fe-gtk
parent6490a206a0e6c0fda85ab656acec6dc44663f2c1 (diff)
use proper table size
Diffstat (limited to 'src/fe-gtk')
-rw-r--r--src/fe-gtk/banlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/banlist.c b/src/fe-gtk/banlist.c
index 375de821..f0c97e7e 100644
--- a/src/fe-gtk/banlist.c
+++ b/src/fe-gtk/banlist.c
@@ -751,7 +751,7 @@ banlist_opengui (struct session *sess)
 	/* create banlist view */
 	banl->treeview = banlist_treeview_new (vbox, banl);
 
-	table = gtk_table_new (1, 3, FALSE);
+	table = gtk_table_new (1, MODE_CT, FALSE);
 	gtk_table_set_col_spacings (GTK_TABLE (table), 16);
 	gtk_box_pack_start (GTK_BOX (vbox), table, 0, 0, 0);