Changeset 3738

Show
Ignore:
Timestamp:
08/23/08 03:57:37 (5 months ago)
Author:
andar
Message:

Sort filenames alphabetically in add torrent dialog

Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0.0_RC/ChangeLog

    r3734 r3738  
    22 Core: 
    33  * Attempt to automatically upgrade a 0.5.x state file to new format 
     4   
     5 GtkUI: 
     6  * Sort filenames alphabetically in add torrent dialog 
    47   
    58Deluge 0.9.07 - "1.0.0_RC7" (18 August 2008) 
  • branches/1.0.0_RC/deluge/ui/gtkui/addtorrentdialog.py

    r3654 r3738  
    7272        self.files_treestore = gtk.TreeStore(bool, str, gobject.TYPE_UINT64, 
    7373                                        gobject.TYPE_INT64, bool, str) 
     74        self.files_treestore.set_sort_column_id(1, gtk.SORT_ASCENDING) 
     75 
    7476        # Holds the files info 
    7577        self.files = {} 
  • trunk/deluge/ui/gtkui/addtorrentdialog.py

    r3654 r3738  
    7272        self.files_treestore = gtk.TreeStore(bool, str, gobject.TYPE_UINT64, 
    7373                                        gobject.TYPE_INT64, bool, str) 
     74        self.files_treestore.set_sort_column_id(1, gtk.SORT_ASCENDING) 
     75         
    7476        # Holds the files info 
    7577        self.files = {}