mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
Fix sorting in TorrentView.
This commit is contained in:
parent
4a8f2c46f2
commit
7522ecf719
1 changed files with 4 additions and 3 deletions
|
@ -170,9 +170,10 @@ class TorrentView(listview.ListView, component.Component):
|
|||
self.filter = (None, None)
|
||||
|
||||
# Set the liststore filter column
|
||||
self.model_filter = self.liststore.filter_new()
|
||||
self.model_filter.set_visible_column(
|
||||
model_filter = self.liststore.filter_new()
|
||||
model_filter.set_visible_column(
|
||||
self.columns["filter"].column_indices[0])
|
||||
self.model_filter = gtk.TreeModelSort(model_filter)
|
||||
self.treeview.set_model(self.model_filter)
|
||||
|
||||
### Connect Signals ###
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue