[GTKUI] Tidyup Preferences Dialog

* Remove unnessary page headers to save space
 * Reordered pages to be lightly grouped
 * Other changes to utilise space better
 * Fixed the plugin info panel collapsing on startup
This commit is contained in:
Calum Lind 2014-08-22 17:35:43 +01:00
parent 210acf68c1
commit 849101950f
2 changed files with 2079 additions and 2424 deletions

File diff suppressed because it is too large Load Diff

View File

@ -96,8 +96,8 @@ class Preferences(component.Component):
self.treeview.append_column(column)
# Add the default categories
i = 0
for category in (_("Interface"), _("Downloads"), _("Network"), _("Bandwidth"), _("Other"),
_("Daemon"), _("Queue"), _("Proxy"), _("Cache"), _("Plugins"), "_separator_"):
for category in (_("Interface"), _("Downloads"), _("Bandwidth"), _("Queue"), _("Network"),
_("Proxy"), _("Cache"), _("Other"), _("Daemon"), _("Plugins"), "_separator_"):
self.liststore.append([i, category])
i += 1