mirror of
https://git.deluge-torrent.org/deluge
synced 2025-09-18 07:41:55 +00:00
Sort filenames alphabetically in add torrent dialog
This commit is contained in:
parent
07eaf8ed36
commit
c32af5ac95
1 changed files with 2 additions and 0 deletions
|
@ -71,6 +71,8 @@ class AddTorrentDialog(component.Component):
|
|||
#download?, path, filesize, sequence number, inconsistent?
|
||||
self.files_treestore = gtk.TreeStore(bool, str, gobject.TYPE_UINT64,
|
||||
gobject.TYPE_INT64, bool, str)
|
||||
self.files_treestore.set_sort_column_id(1, gtk.SORT_ASCENDING)
|
||||
|
||||
# Holds the files info
|
||||
self.files = {}
|
||||
self.infos = {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue