From 49ea2dd4d8b2f2d45b57da94edb49d9bdcb97eb5 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 20 Nov 2007 01:54:11 +0000 Subject: [PATCH] gtk+: disable the "status" column by default --- gtk/torrent-inspector.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gtk/torrent-inspector.c b/gtk/torrent-inspector.c index c4645757b..05d48c188 100644 --- a/gtk/torrent-inspector.c +++ b/gtk/torrent-inspector.c @@ -524,8 +524,11 @@ static GtkWidget* peer_page_new ( TrTorrent * gtor ) PEER_COL_PROGRESS, PEER_COL_IS_ENCRYPTED, PEER_COL_UPLOAD_RATE, - PEER_COL_DOWNLOAD_RATE, - PEER_COL_STATUS }; + PEER_COL_DOWNLOAD_RATE +#if 0 + , PEER_COL_STATUS +#endif + }; m = peer_model_new (tor); v = gtk_tree_view_new_with_model (m);