mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Sort filenames alphabetically in add torrent dialog
This commit is contained in:
parent
240c60aa74
commit
ab9842e4c1
2 changed files with 5 additions and 0 deletions
|
@ -2,6 +2,9 @@ Deluge 0.9.08 - "1.0.0_RC8" (In Development)
|
|||
Core:
|
||||
* Attempt to automatically upgrade a 0.5.x state file to new format
|
||||
|
||||
GtkUI:
|
||||
* Sort filenames alphabetically in add torrent dialog
|
||||
|
||||
Deluge 0.9.07 - "1.0.0_RC7" (18 August 2008)
|
||||
Core:
|
||||
* Fix loading torrents from state when fastresume file is missing
|
||||
|
|
|
@ -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
Reference in a new issue