mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
Fix #1861 - AutoAdd Warning (column number is a boolean)
This commit is contained in:
parent
e0443943b5
commit
94a7b2ebf1
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue