mirror of
https://github.com/codex-storage/deluge.git
synced 2025-01-12 12:34:43 +00:00
Optimizations to torrentview.update_view
A few changes that reduces the CPU usage of the GTK UI significantly. This small patch is made simple to be 100% certain not to introduce new bugs.
This commit is contained in:
parent
08d7b9fba3
commit
a0ae3ebfce
@ -406,14 +406,17 @@ class TorrentView(listview.ListView, component.Component):
|
||||
filter_column = self.columns["filter"].column_indices[0]
|
||||
# Update the torrent view model with data we've received
|
||||
status = self.status
|
||||
status_keys = status.keys()
|
||||
|
||||
for row in self.liststore:
|
||||
torrent_id = row[self.columns["torrent_id"].column_indices[0]]
|
||||
|
||||
if not torrent_id in status.keys():
|
||||
row[filter_column] = False
|
||||
if not torrent_id in status_keys:
|
||||
if row[filter_column] is True:
|
||||
row[filter_column] = False
|
||||
else:
|
||||
row[filter_column] = True
|
||||
if row[filter_column] is False:
|
||||
row[filter_column] = True
|
||||
if torrent_id in self.prev_status and status[torrent_id] == self.prev_status[torrent_id]:
|
||||
# The status dict is the same, so do not update
|
||||
continue
|
||||
|
Loading…
x
Reference in New Issue
Block a user