Module: deluge Branch: chunked-sessionproxy-and-gtkui-speedups Commit: 94a7b2ebf18a8f69b6150cc9bea7bc26af4fb4b9
Author: Calum Lind <[email protected]> Date: Sat May 28 00:14:01 2011 +0100 Fix #1861 - AutoAdd Warning (column number is a boolean) --- deluge/plugins/autoadd/autoadd/gtkui.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/deluge/plugins/autoadd/autoadd/gtkui.py b/deluge/plugins/autoadd/autoadd/gtkui.py index d06daae..25d3eea 100644 --- a/deluge/plugins/autoadd/autoadd/gtkui.py +++ b/deluge/plugins/autoadd/autoadd/gtkui.py @@ -384,7 +384,7 @@ class GtkUI(GtkPluginBase): def create_columns(self, treeView): rendererToggle = gtk.CellRendererToggle() column = gtk.TreeViewColumn( - _("Active"), rendererToggle, activatable=True, active=1 + _("Active"), rendererToggle, activatable=1, active=1 ) column.set_sort_column_id(1) treeView.append_column(column) -- You received this message because you are subscribed to the Google Groups "deluge-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/deluge-commit?hl=en.
