From 28133d0e07b6dc1ede5d500a1efb7189226d6976 Mon Sep 17 00:00:00 2001 From: Alex Dedul Date: Fri, 13 Jul 2007 07:53:16 +0000 Subject: [PATCH] Show plugins list sorted by name by default in Plugins dialog. --- src/dialogs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dialogs.py b/src/dialogs.py index 905166bd0..d41139e6c 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -175,6 +175,7 @@ class PluginDlg: self.dialog.set_icon_from_file(common.get_pixmap("deluge32.png")) self.view = self.glade.get_widget("plugin_view") self.store = gtk.ListStore(str, bool) + self.store.set_sort_column_id(0, gtk.SORT_ASCENDING) self.view.set_model(self.store) try: self.view.get_selection().set_select_function(self.plugin_clicked, full=True)