mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 07:58:38 +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:
|
Core:
|
||||||
* Attempt to automatically upgrade a 0.5.x state file to new format
|
* 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)
|
Deluge 0.9.07 - "1.0.0_RC7" (18 August 2008)
|
||||||
Core:
|
Core:
|
||||||
* Fix loading torrents from state when fastresume file is missing
|
* Fix loading torrents from state when fastresume file is missing
|
||||||
|
|
|
@ -71,6 +71,8 @@ class AddTorrentDialog(component.Component):
|
||||||
#download?, path, filesize, sequence number, inconsistent?
|
#download?, path, filesize, sequence number, inconsistent?
|
||||||
self.files_treestore = gtk.TreeStore(bool, str, gobject.TYPE_UINT64,
|
self.files_treestore = gtk.TreeStore(bool, str, gobject.TYPE_UINT64,
|
||||||
gobject.TYPE_INT64, bool, str)
|
gobject.TYPE_INT64, bool, str)
|
||||||
|
self.files_treestore.set_sort_column_id(1, gtk.SORT_ASCENDING)
|
||||||
|
|
||||||
# Holds the files info
|
# Holds the files info
|
||||||
self.files = {}
|
self.files = {}
|
||||||
self.infos = {}
|
self.infos = {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue