From b07c8df3cf19a91c8bd436dc8e2db057810fc6b2 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 20 Jun 2007 15:55:27 +0000 Subject: [PATCH] Fix torrent-inspector bug reported in the forums by webaake --- gtk/torrent-inspector.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/torrent-inspector.c b/gtk/torrent-inspector.c index 5f5b13866..72c6ad5a2 100644 --- a/gtk/torrent-inspector.c +++ b/gtk/torrent-inspector.c @@ -249,7 +249,7 @@ static const char* peer_column_names[N_PEER_COLS] = N_("Port"), N_("Client"), N_("Progress"), - "", + " ", N_("Downloading"), N_("DL Rate"), N_("Uploading"), @@ -277,7 +277,7 @@ peer_row_set (GtkTreeStore * store, const char * client = peer->client; if (!client || !strcmp(client,"Unknown Client")) - client = ""; + client = " "; gtk_tree_store_set (store, iter, PEER_COL_ADDRESS, peer->addr,