From 0b78316d65b0e6bb117683680d7e2b12c558557f Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Mon, 11 Jun 2007 06:35:17 +0000 Subject: [PATCH] Fixed the Total Download summary to show the correct amount. --- src/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interface.py b/src/interface.py index c03ad114f..1936b65b5 100644 --- a/src/interface.py +++ b/src/interface.py @@ -684,7 +684,7 @@ class DelugeGTK: self.wtree.get_widget("summary_name").set_text(state['name']) self.text_summary_total_size.set_text(common.fsize(state["total_size"])) self.text_summary_pieces.set_text(str(state["num_pieces"])) - self.text_summary_total_downloaded.set_text(common.fsize(state["total_done"] + state["total_payload_download"])) + self.text_summary_total_downloaded.set_text(common.fsize(state["total_done"])) self.text_summary_total_uploaded.set_text(common.fsize(self.manager.unique_IDs[self.get_selected_torrent()].uploaded_memory + state["total_payload_upload"])) self.text_summary_download_rate.set_text(common.frate(state["download_rate"])) self.text_summary_upload_rate.set_text(common.frate(state["upload_rate"]))