Ticket #1100: sort-plugins-list.patch

File sort-plugins-list.patch, 574 bytes (added by Ideal, 15 years ago)
  • deluge/ui/gtkui/preferences.py

     
    8080
    8181        # Setup plugin tab listview
    8282        self.plugin_liststore = gtk.ListStore(str, bool)
     83        self.plugin_liststore.set_sort_column_id(0, gtk.SORT_ASCENDING)
    8384        self.plugin_listview = self.glade.get_widget("plugin_listview")
    8485        self.plugin_listview.set_model(self.plugin_liststore)
    8586        render = gtk.CellRendererToggle()