From df92d3c4685dba36a55d5cc2acc5c9d817c27a3e Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Fri, 23 Jan 2009 05:25:31 +0000 Subject: Fix when sorting # column, downloads should be on top --- ChangeLog | 1 + deluge/ui/gtkui/listview.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5d5263ac0..238888889 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,7 @@ Deluge 1.1.1 - (In Development) * Do not allow duplicate torrents in the AddTorrentDialog * Fix translating speed units in status tab when a per-torrent limit is set * Fix torrents not displaying properly after disconnecting and reconnecting to the daemon + * Fix when sorting # column, downloads should be on top Misc: * Fix bdecoding some torrent files diff --git a/deluge/ui/gtkui/listview.py b/deluge/ui/gtkui/listview.py index 3fd3ecfcc..29af71ba9 100644 --- a/deluge/ui/gtkui/listview.py +++ b/deluge/ui/gtkui/listview.py @@ -171,7 +171,7 @@ class ListView: self.model_filter = gtk.TreeModelSort(model_filter) if sort_info and sort_info[0] and sort_info[1] > -1: self.model_filter.set_sort_column_id(sort_info[0], sort_info[1]) - #self.set_sort_functions() + self.set_sort_functions() self.treeview.set_model(self.model_filter) def set_sort_functions(self): -- cgit