From be897f8ec116fa5197203663364987cf099f7c98 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sat, 9 Jun 2007 01:15:00 +0000 Subject: [PATCH] peers change --- src/deluge_core.cpp | 4 +--- src/interface.py | 10 +++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/src/deluge_core.cpp b/src/deluge_core.cpp index 082d7c95e..60386c0a5 100644 --- a/src/deluge_core.cpp +++ b/src/deluge_core.cpp @@ -613,9 +613,7 @@ static PyObject *torrent_get_torrent_state(PyObject *self, PyObject *args) long connected_seeds = 0; for (unsigned long i = 0; i < peers.size(); i++) - if ( peers[i].seed && !(peers[i].flags& - (peer_info::handshake|peer_info::connecting|peer_info::queued)) ) - connected_seeds++; + if (peers[i].flags&(peer_info::seed)) connected_seeds++; long connected_peers = s.num_peers - connected_seeds; diff --git a/src/interface.py b/src/interface.py index 383620f44..b97924906 100644 --- a/src/interface.py +++ b/src/interface.py @@ -446,10 +446,10 @@ class DelugeGTK: self.text_summary_pieces = self.wtree.get_widget("summary_pieces") self.text_summary_total_downloaded = self.wtree.get_widget("summary_total_downloaded") self.text_summary_total_uploaded = self.wtree.get_widget("summary_total_uploaded") - self.text_summary_download_rate = self.wtree.get_widget("summary_download_rate") - self.text_summary_upload_rate = self.wtree.get_widget("summary_upload_rate") - self.text_summary_seeders = self.wtree.get_widget("summary_seeders") - self.text_summary_peers = self.wtree.get_widget("summary_peers") + self.text_summary_download_rate = self.wtree.get_widget("summary_download_rate") + self.text_summary_upload_rate = self.wtree.get_widget("summary_upload_rate") + self.text_summary_seeders = self.wtree.get_widget("summary_seeders") + self.text_summary_peers = self.wtree.get_widget("summary_peers") self.text_summary_percentage_done = self.wtree.get_widget("summary_percentage_done") self.text_summary_share_ratio = self.wtree.get_widget("summary_share_ratio") self.text_summary_downloaded_this_session = self.wtree.get_widget("summary_downloaded_this_session") @@ -459,7 +459,7 @@ class DelugeGTK: self.text_summary_tracker_status = self.wtree.get_widget("summary_tracker_status") self.text_summary_next_announce = self.wtree.get_widget("summary_next_announce") self.text_summary_compact_allocation = self.wtree.get_widget("summary_compact_allocation") - self.text_summary_eta = self.wtree.get_widget("summary_eta") + self.text_summary_eta = self.wtree.get_widget("summary_eta") def build_peer_tab(self): self.peer_view = self.wtree.get_widget("peer_view")