mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 15:08:40 +00:00
Cleaned up the seed_peer_column_sort
function. Code reuse is always better.
This commit is contained in:
parent
8a15a18361
commit
238e183851
1 changed files with 4 additions and 11 deletions
|
@ -157,17 +157,10 @@ def seed_peer_column_sort(model, iter1, iter2, data):
|
|||
if v2 == v4:
|
||||
return 0
|
||||
if v2 > v4:
|
||||
return -1
|
||||
return 1
|
||||
if v2 < v4:
|
||||
return 1
|
||||
if v1 == 0:
|
||||
return 1
|
||||
if v3 == 0:
|
||||
return -1
|
||||
if v1 > v3:
|
||||
return 1
|
||||
if v3 > v1:
|
||||
return -1
|
||||
return queue_column_sort(model, iter1, iter2, data)
|
||||
|
||||
class TorrentView(listview.ListView, component.Component):
|
||||
"""TorrentView handles the listing of torrents."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue